-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPrerquesite String Builder.xaml
77 lines (77 loc) · 2.84 KB
/
Prerquesite String Builder.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
<Window x:Class="Prerquesite_String_Builder"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
Title="Prerequisite StringBuilder"
Width="523"
Height="185"
>
<Grid>
<Border Width="495"
Margin="10,96,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
BorderBrush="Black"
BorderThickness="1"
>
<TextBlock x:Name="ResultString"
Width="495"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Text=""
TextWrapping="NoWrap"
/>
</Border>
<ComboBox x:Name="comboBoxTargetID"
Width="100"
Margin="10,53,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
<ComboBox x:Name="comboBoxFlag"
Width="100"
Margin="115,53,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
<ComboBox x:Name="comboBoxComparer"
Width="90"
Margin="325,53,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
<xctk:IntegerUpDown x:Name="SpinControl"
Width="75"
Margin="420,55,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Increment="1"
Maximum="999"
Minimum="0"
/>
<Button x:Name="buttonOk"
Width="75"
Margin="350,117,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="OK"
/>
<Button x:Name="buttonCancel"
Width="75"
Margin="430,117,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
Content="Cancel"
/>
<ComboBox x:Name="comboBoxComparable"
Width="100"
Margin="220,53,0,0"
HorizontalAlignment="Left"
VerticalAlignment="Top"
ItemsSource="{Binding}"
/>
</Grid>
</Window>