Binding QML window to the rectangle as a parent-child relationship
-
Hi,
How to create a window in qml which is child of a rectangle. something like below.
so when a rectangle is moved the window is also moved relative to it.Rectangle { color: "transparent" anchors.fill: parent Window { id: myWindow width: parent.width height: parent.height Component.OncCompleted: { myWIndow.show(); myWindow.setVisible (true); } } }
-
Hi,
How to create a window in qml which is child of a rectangle. something like below.
so when a rectangle is moved the window is also moved relative to it.Rectangle { color: "transparent" anchors.fill: parent Window { id: myWindow width: parent.width height: parent.height Component.OncCompleted: { myWIndow.show(); myWindow.setVisible (true); } } }
-
I have to display the 3D in the window using custom render engine. This window is part of List view which is oriented horizontally. The list view has 3 pages and I can scroll the view.
So when I scroll I am unable to scroll window as it is not child of item.
Also is there a way to clip the window once its content goes out of view -
I have to display the 3D in the window using custom render engine. This window is part of List view which is oriented horizontally. The list view has 3 pages and I can scroll the view.
So when I scroll I am unable to scroll window as it is not child of item.
Also is there a way to clip the window once its content goes out of view