Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

How to Open New Window in Maximized Mode(Solved)

$
0
0
Hi, For my application I need to open a new window in Maximized mode, From Parent I Opened new window like onDoubleClicked: {                             var component = Qt.createComponent("newWindow.qml")                             var window    = component.createObject(root)                             window.show()                                             } And I created my new window like below, here I set visibility: “Maximized” ApplicationWindow {      id: newWindow    visibility: "Maximized"    visible: true    width: 1080    height: 680 ..................... .................... } But the new window is not opening in Maximized mode, am I doing anything wrong ? Any help will be appreciated……

Viewing all articles
Browse latest Browse all 4972

Trending Articles