blob: e7688cf410862d02928a9f033622a8bbdf0e6a6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
<element name="Button">
<annotation>
<documentation>
Defines a button.
</documentation>
</annotation>
<complexType mixed="true">
<annotation>
<documentation>
Text to display in the button.
Mutually exclusive with the StringId attribute and child Text elements.
</documentation>
</annotation>
<choice minOccurs="0" maxOccurs="unbounded">
<annotation>
<documentation>
If multiple Action elements are given, the conditions should be mutually exclusive (when multiple conditions are true, the behavior is undefined and could be changed at any time).
If none of the conditions of the Action elements are true, then it uses the Action element without the Condition attribute.
</documentation>
</annotation>
<element ref="ButtonImage" maxOccurs="1" />
<element ref="ButtonFocusImage" maxOccurs="1" />
<element ref="ButtonHoverImage" maxOccurs="1" />
<element ref="ButtonSelectedImage" maxOccurs="1" />
<element ref="BrowseDirectoryAction" />
<element ref="ChangePageAction" />
<element ref="CloseWindowAction" />
<element ref="Text" />
<element ref="Tooltip" maxOccurs="1" />
</choice>
<attributeGroup ref="CommonControlAttributes" />
<attributeGroup ref="OwnerDrawImageAttributes" />
<attribute name="FontId" type="xs:string">
<annotation>
<documentation>Identifier to the Font element that serves as the font for the control. Only valid when using graphic buttons.</documentation>
</annotation>
</attribute>
<attribute name="HoverFontId" type="xs:string">
<annotation>
<documentation>Identifier to the Font element that serves as the font when the control is hovered over. Only valid when using graphic buttons.</documentation>
</annotation>
</attribute>
<attribute name="SelectedFontId" type="xs:string">
<annotation>
<documentation>Identifier to the Font element that serves as the font when the control is selected. Only valid when using graphic buttons.</documentation>
</annotation>
</attribute>
<attribute name="StringId" type="xs:nonNegativeInteger">
<annotation>
<documentation>
Identifier that references a string resource in the module to define the text for the control.
</documentation>
</annotation>
</attribute>
</complexType>
</element>
|