@texasRanger said in Multiple UI windows??:
Solved here:
https://forum.qt.io/topic/99477/multiwindow-in-qml-proof-of-concept/7
The solution in this post is unnecessarily complicated.
In your question about them being blank I don't understand what you are doing
//main.qml
QtObject {
property Window window1: Window {
visible: true
// ...
}
}
//FirstForm
window1 {
//UI formating
}
How are those two related?
Why not do this?
//main.qml
QtObject {
property Window window1: Window {
visible: true
// ...
FirstForm {
anchors.fill: parent
}
}
}