Element
Unsolved
QML and Qt Quick
-
-
@MartinD
I think you can read QML property binding -
Add id to your window
Window{ id: screen ... }
In any other QML file
Rectangle{ height: screen.height/2 }
This will work if Window is a main application window.