-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.xml
More file actions
20 lines (20 loc) · 750 Bytes
/
main.xml
File metadata and controls
20 lines (20 loc) · 750 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<Window Title="TabControl example">
<TabControl HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<TabControl.TabDefinitions>
<TabDefinition Title="First"/>
<TabDefinition Title="Second"/>
<TabDefinition Title="Third"/>
</TabControl.TabDefinitions>
<CheckBox Name="checkbox" Caption="Check me" Checked="True"/>
<CheckBox Name="checkbox" Caption="Check me too"/>
<Panel>
<RadioGroup Name="radio">
<RadioButton Caption="Listen music" Checked="True"/>
<RadioButton Caption="Eat"/>
<RadioButton Caption="Read the newspaper"/>
<RadioButton Caption="Watch TV"/>
</RadioGroup>
<Button Caption="What am I want now?"/>
</Panel>
</TabControl>
</Window>