| 1234567891011121314151617181920212223242526272829303132333435 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ui-layout-def xmlns="http://quadarax.com/ui-layout-definition"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- version="1.6" schema-version="1.6" target-platform="basic">
- <patterns>
- <pattern-include src="abstract-controls.xml" important="true"/>
- <wireframe name="main-layout" type="base-layout" platform="basic">
- <template>
- <Panel name="ctrl_001" x="0" y="0" width="360" height="640">
- <Panel name="ctrl_002" x="0" y="0" width="360" height="48"
- slot-name="header" slot-allowed-controls="any"/>
- <Panel name="ctrl_003" x="0" y="48" width="360" height="544"
- slot-name="main-content" slot-allowed-controls="any" slot-required="true"/>
- <Panel name="ctrl_004" x="0" y="592" width="360" height="48"
- slot-name="footer" slot-allowed-controls="any"/>
- </Panel>
- </template>
- </wireframe>
- </patterns>
- <window name="HomeScreen" title="Home" target-platform="basic" wireframe="main-layout">
- <slot-overrides>
- <slot name="header">
- <Label name="ctrl_005" x="16" y="8" width="200" height="32" text="My Application"/>
- </slot>
- <slot name="main-content">
- <Label name="ctrl_006" x="16" y="16" width="200" height="24" text="Welcome"/>
- <TextBox name="ctrl_007" x="16" y="56" width="328" height="32"/>
- <Button name="ctrl_008" x="120" y="104" width="120" height="40" text="Submit"/>
- </slot>
- <slot name="footer">
- <Label name="ctrl_009" x="16" y="8" width="200" height="32" text="Status: Ready"/>
- </slot>
- </slot-overrides>
- </window>
- </ui-layout-def>
|