| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?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="web">
- <patterns>
- <pattern-include src="abstract-controls.xml" important="true"/>
- <pattern-include src="webawesome-controls.xml" important="true" platform="web"/>
- <wireframe name="wa-application-layout" type="base-layout" platform="web">
- <template>
- <Panel name="ctrl_001" x="0" y="0" width="1024" height="768">
- <Panel name="ctrl_002" x="0" y="0" width="1024" height="56"
- slot-name="nav-bar" slot-allowed-controls="any"/>
- <Panel name="ctrl_003" x="0" y="56" width="240" height="656"
- slot-name="sidebar" slot-allowed-controls="any"/>
- <Panel name="ctrl_004" x="240" y="56" width="784" height="656"
- slot-name="main-area" slot-allowed-controls="any" slot-required="true"/>
- </Panel>
- </template>
- </wireframe>
- </patterns>
- <window name="ContactForm" title="Contact Us" target-platform="web" wireframe="wa-application-layout">
- <slot-overrides>
- <slot name="nav-bar">
- <Label name="ctrl_010" x="16" y="12" width="200" height="32" text="MyApp"/>
- <wa-button name="ctrl_011" x="900" y="12" width="100" height="32" text="Login"/>
- </slot>
- <slot name="sidebar">
- <wa-button name="ctrl_012" x="8" y="8" width="224" height="36" text="Home"/>
- <wa-button name="ctrl_013" x="8" y="52" width="224" height="36" text="About"/>
- <wa-button name="ctrl_014" x="8" y="96" width="224" height="36" text="Contact"/>
- </slot>
- <slot name="main-area">
- <Label name="ctrl_020" x="16" y="16" width="300" height="28" text="Contact Us"/>
- <Label name="ctrl_021" x="16" y="60" width="80" height="24" text="Name:"/>
- <wa-input name="ctrl_022" x="100" y="56" width="400" height="32"/>
- <Label name="ctrl_023" x="16" y="108" width="80" height="24" text="Email:"/>
- <wa-input name="ctrl_024" x="100" y="104" width="400" height="32"/>
- <Label name="ctrl_025" x="16" y="156" width="80" height="24" text="Message:"/>
- <wa-textarea name="ctrl_026" x="100" y="152" width="400" height="120"/>
- <wa-button name="ctrl_027" x="100" y="288" width="120" height="36" text="Send"/>
- </slot>
- </slot-overrides>
- </window>
- </ui-layout-def>
|