| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!-- Example: windows-controls.xml -->
- <?xml version="1.0" encoding="UTF-8" ?>
- <patterns xmlns="ui-layout-patterns">
-
- <!-- Windows-specific controls -->
- <control name="RichTextBox" type="input" category="windows-specific">
- <constraints>
- <allowed-parents>Panel,FormField</allowed-parents>
- <allowed-children>none</allowed-children>
- <container>false</container>
- </constraints>
- <attributes>
- <attribute name="rtf-content" type="string" default="" />
- <attribute name="enable-auto-url-detect" type="bool" default="true" />
- <attribute name="word-wrap" type="bool" default="true" />
- <attribute name="show-selection-margin" type="bool" default="false" />
- </attributes>
- <behavior>
- <event name="text-changed" />
- <event name="selection-changed" />
- </behavior>
- </control>
-
- <control name="PropertyGrid" type="data" category="windows-specific">
- <constraints>
- <allowed-parents>Panel</allowed-parents>
- <allowed-children>property-categories</allowed-children>
- <container>true</container>
- </constraints>
- <attributes>
- <attribute name="selected-object" type="object" default="null" />
- <attribute name="property-sort" type="enum" values="alphabetical,categorized,none" default="categorized" />
- <attribute name="help-visible" type="bool" default="true" />
- </attributes>
- <structure>
- <property-categories>
- <category name="" display-name="" expanded="true" />
- </property-categories>
- </structure>
- </control>
-
- <control name="NotifyIcon" type="system" category="windows-specific">
- <constraints>
- <allowed-parents>window</allowed-parents>
- <allowed-children>context-menu</allowed-children>
- <container>false</container>
- </constraints>
- <attributes>
- <attribute name="icon" type="icon" required="true" />
- <attribute name="tooltip-text" type="string" default="" />
- <attribute name="visible" type="bool" default="false" />
- <attribute name="balloon-tip-title" type="string" default="" />
- </attributes>
- <behavior>
- <event name="click" />
- <event name="double-click" />
- <event name="balloon-tip-clicked" />
- </behavior>
- </control>
- </patterns>
|