-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResultBoxSelectionFiller.xaml
68 lines (68 loc) · 2.58 KB
/
ResultBoxSelectionFiller.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
<Window x:Class="ResultBucketSelectionFiller"
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="264"
Height="170"
mc:Ignorable="d"
>
<Grid>
<xctk:SingleUpDown x:Name="ComboBoxResultBucketWeight"
Width="88"
Margin="158,41,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Increment="0.01"
Maximum="999.0"
Minimum="0.0"
Value="0.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,108,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Ok"
/>
<Button x:Name="buttonCancel"
Width="75"
Height="22"
Margin="0,108,23,0"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Content="Cancel"
/>
<xctk:SingleUpDown x:Name="ComboBoxResultBucketValue"
Width="88"
Margin="158,68,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Increment="0.01"
Maximum="999.0"
Minimum="0.0"
Value="0.0"
/>
<Label x:Name="labelWeight"
Margin="10,41,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Weight"
/>
<Label x:Name="labelValue"
Margin="10,68,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Value"
/>
</Grid>
</Window>