Your browser does not seem to support JavaScript. As a result, your viewing experience will be diminished, and you have been placed in read-only mode.
Please download a browser that supports JavaScript, or enable it if it's disabled (i.e. NoScript).
Hey guys,
I'm wondering if there is a way to initialize property aliases? e.g.
Item { property alias valueDisplayVisible: valueDisplay.visible // I want this to be false by default Rectangle { id: valueDisplay } }
CU mts
Hi,
you can fix the initial value of the variable
Item { property alias valueDisplayVisible: valueDisplay.visible // I want this to be false by default Rectangle { id: valueDisplay visible: false } }
Ahh, sure! Thanks :-) Didn't thought it was that easy ;-)