Multiple windows
-
Hi,
I would like to be able to open multiple windows from my main window in QML.
I tried this with the following piece of code:var component = Qt.createComponent("../../qml/parent.qml") var window = component.createObject(parent) window.show()
This works but opens a window with a parent and the newly opened window always stays on top.
I want all the opened windows to be completely independent. How do I do this the best way?I'm new to all this, so every answer is welcome :)