mirror of
https://github.com/macocianradu/javaGUItoolkit.git
synced 2026-03-18 21:50:04 +00:00
127 lines
4.0 KiB
XML
127 lines
4.0 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 Scris In Text 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"/>
|
|
<RadioButtons
|
|
Name="Radio Buttons"
|
|
Size="0.4f, 0.3f">
|
|
<RadioButton
|
|
Text="Up"
|
|
Name="Up"
|
|
Size="300, 20"
|
|
Icon="circle"
|
|
/>
|
|
<RadioButton
|
|
Text="Middle"
|
|
Name="Middle"
|
|
Size="300, 20"
|
|
Icon="circle"
|
|
/>
|
|
<RadioButton
|
|
Text="Down"
|
|
Name="Down"
|
|
Size="300, 20"
|
|
Icon="circle"
|
|
/>
|
|
</RadioButtons>
|
|
|
|
<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> |