bright-gpu-74537
12/29/2022, 8:15 AMfierce-salesmen-48333
12/29/2022, 8:15 AMbright-gpu-74537
12/29/2022, 8:15 AMbright-gpu-74537
12/29/2022, 8:15 AMfierce-salesmen-48333
12/29/2022, 8:15 AMbright-gpu-74537
12/29/2022, 8:16 AMfierce-salesmen-48333
12/29/2022, 8:16 AMbright-gpu-74537
12/29/2022, 8:17 AMbright-gpu-74537
12/29/2022, 8:42 AMbright-gpu-74537
12/29/2022, 8:42 AMxml
<style>
.frame .header {
horizontal-align: right;
vertical-align: center;
margin-right: 10px;
spacing: 5px;
}
#testFrame1 {
icon: "haxeui-core/styles/default/haxeui_tiny.png";
}
</style>
<hbox>
<frame id="testFrame1" width="200" height="100" text="Foo">
</frame>
<frame id="testFrame2" width="200" height="100" text="Foo">
<header>
<button text="Button" />
</header>
</frame>
<frame id="testFrame3" width="200" height="100" text="Foo">
<header>
<checkbox selected="true" />
</header>
</frame>
<frame id="testFrame3" width="200" height="100" text="Foo">
<header>
<switch selected="true" />
<progress indeterminate="true" width="50" verticalAlign="center" />
</header>
</frame>
</hbox>
bright-gpu-74537
12/29/2022, 12:53 PMfierce-soccer-8550
12/29/2022, 2:22 PMfull-journalist-82607
12/29/2022, 4:31 PM@:xml('
<vbox width="100%" height="100%">
<button id="button" text="disable vbox"/>
<vbox id="vbox">
<button text="button 1"/>
<button text="button 2"/>
<button text="button 3"/>
</vbox>
</vbox>')
class A004 extends VBox {
@:bind(button, MouseEvent.CLICK)
private function disableBox(e) {
vbox.disabled = true;
}
}
bright-gpu-74537
12/29/2022, 4:35 PMfull-journalist-82607
12/29/2022, 5:41 PMhaxe
@:xml('
<vbox width="100%" height="100%">
<button id="button" text="show card"/>
<button id="button2" text="hide card"/>
<card text="Some Card" id="card" width="300" height="600" hidden="true"/>
</vbox>')
class A006 extends VBox {
@:bind(button, MouseEvent.CLICK)
private function showCard(e) {
card.show();
}
@:bind(button2, MouseEvent.CLICK)
private function hideCard(e) {
card.hide();
}
}
cool-musician-79004
12/29/2022, 7:59 PMambitious-knife-25690
12/29/2022, 8:00 PMambitious-knife-25690
12/29/2022, 8:00 PMpowerful-morning-89
12/29/2022, 8:01 PMcool-musician-79004
12/29/2022, 8:04 PMcool-musician-79004
12/29/2022, 8:04 PMambitious-knife-25690
12/29/2022, 8:05 PMcool-musician-79004
12/29/2022, 8:09 PMambitious-knife-25690
12/29/2022, 8:09 PMambitious-knife-25690
12/29/2022, 8:10 PMfull-journalist-82607
12/29/2022, 8:11 PMfull-journalist-82607
12/29/2022, 8:12 PM