-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStatModSelectionFiller.xaml
107 lines (107 loc) · 4.02 KB
/
StatModSelectionFiller.xaml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<Window x:Class="StatModSelectionFiller"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
Title="ListBoxSelectionFiller"
Width="367"
Height="269"
mc:Ignorable="d"
>
<Grid>
<xctk:IntegerUpDown x:Name="ComboBoxintModValue"
Width="88"
Margin="245,136,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Increment="1"
Maximum="999"
Minimum="-999"
Value="0"
/>
<Label x:Name="label"
Margin="10,10,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Label"
/>
<Button x:Name="buttonOk"
Width="75"
Height="22"
Margin="22,203,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Ok"
/>
<Button x:Name="buttonCancel"
Width="75"
Height="22"
Margin="0,203,23,0"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Content="Cancel"
/>
<xctk:SingleUpDown x:Name="ComboBoxfloatModValue"
Width="88"
Margin="245,163,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Increment="0.01"
Maximum="999.9"
Minimum="-999.9"
Value="0.0"
/>
<Label x:Name="labelIntMod"
Margin="10,136,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="intModValue"
/>
<Label x:Name="labelfloatModValue"
Margin="10,163,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="floatModValue"
/>
<Label x:Name="labelSpecialization"
Margin="10,105,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Specialization"
/>
<Label x:Name="labelSkill"
Margin="10,74,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Skill"
/>
<Label x:Name="labelAttribute"
Margin="10,43,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Attribute"
/>
<ComboBox x:Name="ComboBoxAttribute"
Width="144"
Margin="189,49,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
<ComboBox x:Name="ComboBoxSkill"
Width="144"
Margin="189,78,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
<ComboBox x:Name="ComboBoxSpecialization"
Width="144"
Margin="189,109,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
</Grid>
</Window>