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
This too should work,   onDoubleClicked: {   var component = Qt.createComponent("AppWin.qml")        var window    = component.createObject(root)        window.show()   } ApplicationWindow {    id: newWindow    visibility: "Maximized"    visible: true    Rectangle {        anchors.fill: parent        color: "red"    } } here no dimensions specified, just the visibility property set to Maximized.

Viewing all articles
Browse latest Browse all 4972

Trending Articles