Files
javaGUItoolkit/resources/ui.xml
Macocian Adrian Radu 4428e45ddd change how labels are drawn on elements
debugged concurrent modification exception on painting in Visual
2020-06-30 15:53:19 +03:00

151 lines
4.7 KiB
XML

<?xml version="1.0"?>
<Window
Name="Window"
Visible="True"
Title="Sudoku 1.0"
Size="1024, 576">
<GridPanel
BackgroundColor="#75ff75"
Size="1.0f, 1.0f"
Name="Main Grid">
<Text
Text="Text &#10;Scris &#10;In &#10;Text &#10;Box"
Name="Text"
Alignment="left"
Row="0"
Column="0"/>
<Panel
BackgroundColor="#555555"
Name="Panel"
Overlapping="true"
Row="0"
Column="1">
<Picture
Size="0.5f, 0.3f"
Margins="10"
Name="Image"
Image="clover"/>
<RadioButtonList
Name="Radio Buttons"
Size="0.4f, 0.3f">
<RadioButton
Label="Up"
Name="Up"
Size="300, 20"
Icon="circle"
/>
<RadioButton
Label="Middle"
Name="Middle"
Size="300, 20"
Icon="circle"
/>
<RadioButton
Label="Down"
Name="Down"
Size="300, 20"
Icon="circle"
/>
</RadioButtonList>
<CheckBoxList
Name="Check Box"
Size="0.4f, 0.3f"
Location="0.5f, 0.0f">
<CheckBox
Label="Up"
Name="Up"
Size="300, 20"
Icon="circle"
/>
<CheckBox
Label="Middle"
Name="Middle"
Size="300, 20"
Icon="circle"
/>
<CheckBox
Label="Down"
Name="Down"
Size="300, 20"
Icon="circle"
/>
</CheckBoxList>
<InputTextBox
BackgroundColor="#999999"
AccentColor="#aaaaaa"
ForegroundColor="#ffffff"
Name="Input Text Box"
Location="0.0f, 0.8f"
Size="300, 60">
</InputTextBox>>
<DropDown
BackgroundColor="#222222"
Name="DropDown"
Label="Image Position"
Location="0.0f, 0.5f"
ContentHeight="30"
ContentWidth="100"
ClosedSize="200, 30">
<SideDropDown
Name="TopSide"
Label="Top"
ClosedWidth="100"
ClosedHeight="30"
ContentHeight="30"
ContentWidth="100">
<Button
Disable="true"
Name="topLeft"
Label="Left"/>
<Button
Name="topCenter"
Label="Center"/>
<Button
Name="topRight"
Label="Right"/>
</SideDropDown>
<SideDropDown
Name="MiddleSide"
Label="Middle"
ClosedWidth="100"
ClosedHeight="30"
ContentHeight="30"
ContentWidth="100">
<Button
Name="middleLeft"
Label="Left"/>
<Button
Name="middleCenter"
Label="Center"/>
<Button
Name="middleRight"
Label="Right"/>
</SideDropDown>
<SideDropDown
Name="BottomSide"
Label="Bottom"
ClosedWidth="100"
ClosedHeight="30"
ContentHeight="30"
ContentWidth="100">
<Button
Name="bottomLeft"
Label="Left"/>
<Button
Name="bottomCenter"
Label="Center"/>
<Button
Name="bottomRight"
Label="Right"/>
</SideDropDown>
</DropDown>
</Panel>
</GridPanel>
</Window>