I am coding a state based UI prototyping application in which I want something like a Slide view (as in powerpoint 2010) and drawable canvas where a user can drag and drop a button and textbox from the toolbox, much like in WPF designer. Which controls can I use for
- slide view
- canvas
- toolbox
Example code for UI is :
<screen>
<components>
<textfield x="50" y="120" width="924" textsize="50" background="1" border="1">
<text say="1">
<part type="text">Still I am taking the measurement. Please wait. If you want to terminate this process, please press SKIP.</part>
</text>
</textfield>
<button label="SKIP" width="200" height="200" x="412" y="500" textsize="40" icon="none" adjtext="30">
<event name="clicked">
<action preconditions="no" name="transition">
<parameter>
<type>state</type>
<name>n</name>
<value>4192</value>
</parameter>
</action>
</event>
</button>
</components>
</screen>