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……
↧