Files
javaGUItoolkit/resources/ui.xml
Macocian Adrian Radu 264ca35ad0 fixed rest of animations
fixed drop downs and side dropdowns
made isInside public to let element decide
finished input text box
2020-05-25 20:40:51 +03:00

98 lines
2.9 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="Ioana"
Name="Text"
Row="0"
Column="0"/>
<Panel
BackgroundColor="#555555"
Name="Panel"
Row="0"
Column="1">
<RadioButtons
Size="1.0f, 0.3f">
<RadioButton
Text="Iubesc"
Name="Iubesc"
Size="300, 20"
Icon="circle"
/>
<RadioButton
Text="Ioana"
Name="Ioana"
Size="300, 20"
Icon="circle"
/>
<RadioButton
Text="Mult"
Name="Mult"
Size="300, 20"
Icon="circle"
/>
</RadioButtons>
<InputTextBox
BackgroundColor="#999999"
AccentColor="#aaaaaa"
ForegroundColor="#ffffff"
Location="0.0f, 0.8f"
Size="300, 60"/>
<DropDown
BackgroundColor="#222222"
Name="DropDown"
Label="Drop Down Menu"
Location="0.0f, 0.5f"
ContentHeight="30"
ContentWidth="100"
ClosedSize="200, 30">
<Button
Name="Button1"
Label="B1"/>
<Button
Name="Button2"
Label="B2"/>
<SideDropDown
Name="SideDropDown"
Label="SideDropDown"
ClosedWidth="100"
ClosedHeight="30"
ContentHeight="30"
ContentWidth="100">
<Button
Name="Button3"
Label="Button3"/>
<Button
Name="Button4"
Label="Button4"/>
</SideDropDown>
<SideDropDown
Name="SideDropDown"
Label="SideDropDown"
ClosedWidth="100"
ClosedHeight="30"
ContentHeight="30"
ContentWidth="100">
<Button
Name="Button5"
Label="Button5"/>
<Button
Name="Button6"
Label="Button6"/>
</SideDropDown>
</DropDown>
</Panel>
</GridPanel>
</Window>