-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathex_XA_07
27 lines (17 loc) · 1005 Bytes
/
ex_XA_07
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
<GroupBox Header="Ile czasy spedzasz na komputrze ?">
<StackPanel>
<!-- StackPanel pozwala osiągnąć podobny efekt jak GroupName-->
<!-- <Label FontWeight="Bold" FontSize="20" >Ile czasy spedzasz na komputrze ?</Label>-->
<RadioButton GroupName="AD1">In progress</RadioButton>
<RadioButton GroupName="AD1">Action</RadioButton>
<RadioButton GroupName="AD1">Suspended</RadioButton>
<!-- GrpupName pozwala na utworzenie osobnej grupy i zapisanie zmainay -->
</StackPanel>
</GroupBox>
<StackPanel>
<Label FontWeight="Bold" FontSize="20" Background="Chocolate">Ile czasy potrzebujesz na regeneracje ?</Label>
<RadioButton GroupName="AD2">2-4</RadioButton>
<RadioButton GroupName="AD2">4-6</RadioButton>
<RadioButton GroupName="AD2">6-9</RadioButton>
</StackPanel>
</StackPanel>