-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathComboBoxes.xaml
More file actions
481 lines (442 loc) · 22.2 KB
/
ComboBoxes.xaml
File metadata and controls
481 lines (442 loc) · 22.2 KB
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
<UserControl x:Class="MaterialDesignDemo.ComboBoxes"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:sharedDomain="clr-namespace:MaterialDesignDemo.Shared.Domain;assembly=MaterialDesignDemo.Shared"
xmlns:converters="clr-namespace:MaterialDesignDemo.Shared.Converters;assembly=MaterialDesignDemo.Shared"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:demoAppDomain="clr-namespace:MaterialDesignDemo.Domain"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:materialDesignDemo="clr-namespace:MaterialDesignDemo"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:smtx="clr-namespace:ShowMeTheXAML;assembly=ShowMeTheXAML"
d:DataContext="{d:DesignInstance sharedDomain:ComboBoxesViewModel,
IsDesignTimeCreatable=False}"
d:DesignHeight="1080"
d:DesignWidth="1920"
mc:Ignorable="d">
<UserControl.Resources>
<Style TargetType="{x:Type smtx:XamlDisplay}" BasedOn="{StaticResource {x:Type smtx:XamlDisplay}}">
<Setter Property="Margin" Value="8,0" />
<Setter Property="VerticalAlignment" Value="Bottom" />
</Style>
</UserControl.Resources>
<StackPanel VerticalAlignment="Top">
<TextBlock Style="{StaticResource PageTitleTextBlock}" Text="ComboBox" />
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Default" />
<StackPanel Orientation="Horizontal">
<StackPanel.Resources>
<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource {x:Type ComboBox}}">
<Setter Property="Width" Value="96" />
</Style>
</StackPanel.Resources>
<smtx:XamlDisplay Margin="0,0,8,0" UniqueKey="comboboxes_1">
<ComboBox materialDesign:HintAssist.Hint="OS">
<ComboBoxItem Content="Android" />
<ComboBoxItem Content="iOS" />
<ComboBoxItem Content="Linux" />
<ComboBoxItem Content="Windows" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_2">
<ComboBox materialDesign:ComboBoxAssist.MaxLength="2"
materialDesign:HintAssist.Hint="Search"
materialDesign:HintAssist.HintOpacity=".26"
IsEditable="True">
<ComboBoxItem Content="Apple" />
<ComboBoxItem Content="Banana" />
<ComboBoxItem Content="Pear" />
<ComboBoxItem Content="Orange" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_11">
<ComboBox materialDesign:HintAssist.Hint="Prefix"
materialDesign:TextFieldAssist.PrefixText="$"
IsEditable="True">
<ComboBoxItem Content="Android" />
<ComboBoxItem Content="iOS" />
<ComboBoxItem Content="Linux" />
<ComboBoxItem Content="Windows" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_3">
<ComboBox MinWidth="128"
materialDesign:ColorZoneAssist.Mode="SecondaryLight"
materialDesign:HintAssist.HelperText="Select one OS"
materialDesign:HintAssist.Hint="OS"
materialDesign:TextFieldAssist.HasClearButton="True"
materialDesign:TextFieldAssist.SuffixText="sw"
materialDesign:TextFieldAssist.UnderlineBrush="{DynamicResource SecondaryHueMidBrush}"
Style="{StaticResource MaterialDesignFloatingHintComboBox}">
<ComboBoxItem Content="Android" />
<ComboBoxItem Content="iOS" />
<ComboBoxItem Content="Linux" />
<ComboBoxItem Content="Windows" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_4">
<ComboBox materialDesign:HintAssist.Hint="Disabled Combo with Hint"
materialDesign:HintAssist.IsFloating="True"
IsEnabled="False">
<ComboBoxItem Content="Selected" IsSelected="True" />
</ComboBox>
</smtx:XamlDisplay>
</StackPanel>
<StackPanel Margin="0,16,0,0" Orientation="Horizontal">
<StackPanel.Resources>
<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource {x:Type ComboBox}}">
<Setter Property="HorizontalAlignment" Value="Left" />
<Setter Property="Margin" Value="0,8,0,0" />
</Style>
</StackPanel.Resources>
<smtx:XamlDisplay Margin="0" UniqueKey="comboboxes_9">
<StackPanel>
<CheckBox x:Name="DisplaySelectedItemCheckBox"
Margin="0,8,0,0"
Content="Display Selected Item In Drop Down"
IsThreeState="False" />
<ComboBox materialDesign:ComboBoxAssist.ShowSelectedItem="{Binding ElementName=DisplaySelectedItemCheckBox, Path=IsChecked}">
<ComboBoxItem Content="Apple" IsSelected="True" />
<ComboBoxItem Content="Banana" />
<ComboBoxItem Content="Pear" />
<ComboBoxItem Content="Orange" />
</ComboBox>
</StackPanel>
</smtx:XamlDisplay>
</StackPanel>
<Rectangle Style="{StaticResource PageSectionSeparator}" />
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Long Lists" />
<StackPanel Orientation="Horizontal">
<smtx:XamlDisplay Margin="0" UniqueKey="comboboxes_5">
<ComboBox MinWidth="72"
materialDesign:HintAssist.Hint="Virtualisation"
ItemsSource="{Binding LongIntegerList}"
SelectedValue="{Binding SelectedValueOne}">
<ComboBox.SelectedItem>
<Binding Mode="TwoWay"
Path="SelectedValueOne"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<demoAppDomain:NotEmptyValidationRule ValidatesOnTargetUpdated="True" />
</Binding.ValidationRules>
</Binding>
</ComboBox.SelectedItem>
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_6">
<ComboBox MinWidth="72"
materialDesign:HintAssist.Hint="(editable)"
IsEditable="True"
ItemsSource="{Binding LongIntegerList}">
<ComboBox.Text>
<Binding Mode="TwoWay"
Path="SelectedTextTwo"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<demoAppDomain:NotEmptyValidationRule ValidatesOnTargetUpdated="True" />
</Binding.ValidationRules>
</Binding>
</ComboBox.Text>
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_7">
<ComboBox materialDesign:HintAssist.Hint="(float hint)"
ItemsSource="{Binding LongIntegerList}"
Style="{StaticResource MaterialDesignFloatingHintComboBox}" />
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_8">
<ComboBox MinWidth="72"
materialDesign:HintAssist.FloatingScale="1.5"
materialDesign:HintAssist.Hint="(large float hint)"
ItemsSource="{Binding LongIntegerList}"
Style="{StaticResource MaterialDesignFloatingHintComboBox}" />
</smtx:XamlDisplay>
<smtx:XamlDisplay UniqueKey="comboboxes_12">
<ComboBox MinWidth="72"
materialDesign:HintAssist.FontFamily="Verdana"
materialDesign:HintAssist.Hint="(Change fontfamily float hint)"
ItemsSource="{Binding LongStringList}"
Style="{StaticResource MaterialDesignFloatingHintComboBox}" />
</smtx:XamlDisplay>
</StackPanel>
<StackPanel Margin="0,40,0,0" Orientation="Horizontal">
<materialDesign:PackIcon Margin="0,0,5,0" Kind="Information" />
<TextBlock VerticalAlignment="Center" Text="ComboBoxes are virtualized by default in the library" />
</StackPanel>
<Rectangle Style="{StaticResource PageSectionSeparator}" />
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Filled" />
<StackPanel Orientation="Horizontal">
<smtx:XamlDisplay Margin="0,0,8,0"
HorizontalAlignment="Left"
UniqueKey="comboboxes_filled_combobox">
<StackPanel>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="FilledComboBoxEnabledCheckBox"
Margin="0,0,0,8"
Content="Enabled"
IsChecked="True" />
<Button Grid.Column="1"
HorizontalAlignment="Right"
Click="ClearFilledComboBox_Click"
Content="Clear"
Style="{StaticResource MaterialDesignFlatButton}" />
</Grid>
<ComboBox x:Name="FilledComboBox"
Width="256"
materialDesign:HintAssist.Hint="Some item with a very long hint text that will cut off when floating"
IsEnabled="{Binding Path=IsChecked, ElementName=FilledComboBoxEnabledCheckBox}"
Style="{StaticResource MaterialDesignFilledComboBox}">
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
</ComboBox>
</StackPanel>
</smtx:XamlDisplay>
<smtx:XamlDisplay HorizontalAlignment="Left" UniqueKey="comboboxes_validation_filled_combobox">
<ComboBox Width="256"
materialDesign:HintAssist.Hint="Validation test (editable)"
materialDesign:TextFieldAssist.HasClearButton="True"
IsEditable="True"
ItemsSource="{Binding ShortStringList}"
Style="{StaticResource MaterialDesignFilledComboBox}">
<ComboBox.SelectedItem>
<Binding Mode="TwoWay"
Path="SelectedValidationFilled"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<demoAppDomain:NotEmptyValidationRule ValidatesOnTargetUpdated="True" />
</Binding.ValidationRules>
</Binding>
</ComboBox.SelectedItem>
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay HorizontalAlignment="Left" UniqueKey="comboboxes_helpertext_filled_combobox">
<ComboBox Width="256"
materialDesign:HintAssist.HelperText="Helper text"
materialDesign:HintAssist.Hint="With helper text"
Style="{StaticResource MaterialDesignFilledComboBox}">
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
</ComboBox>
</smtx:XamlDisplay>
</StackPanel>
<Rectangle Style="{StaticResource PageSectionSeparator}" />
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Outlined" />
<StackPanel Margin="0,0,0,16" Orientation="Horizontal">
<smtx:XamlDisplay Margin="0,0,8,0"
HorizontalAlignment="Left"
UniqueKey="comboboxes_outlined_combobox">
<StackPanel>
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition />
<ColumnDefinition />
</Grid.ColumnDefinitions>
<CheckBox x:Name="OutlinedComboBoxEnabledCheckBox"
Margin="0,0,0,8"
Content="Enabled"
IsChecked="True" />
<Button Grid.Column="1"
HorizontalAlignment="Right"
Click="ClearOutlinedComboBox_Click"
Content="Clear"
Style="{StaticResource MaterialDesignFlatButton}" />
</Grid>
<ComboBox x:Name="OutlinedComboBox"
Width="256"
materialDesign:HintAssist.Hint="Some item"
IsEnabled="{Binding Path=IsChecked, ElementName=OutlinedComboBoxEnabledCheckBox}"
ItemsSource="{Binding ShortStringList}"
Style="{StaticResource MaterialDesignOutlinedComboBox}" />
</StackPanel>
</smtx:XamlDisplay>
<smtx:XamlDisplay HorizontalAlignment="Left" UniqueKey="comboboxes_validation_outlined_combobox">
<ComboBox Width="256"
materialDesign:HintAssist.Hint="Validation test"
materialDesign:TextFieldAssist.HasClearButton="True"
ItemsSource="{Binding ShortStringList}"
Style="{StaticResource MaterialDesignOutlinedComboBox}">
<ComboBox.SelectedItem>
<Binding Mode="TwoWay"
Path="SelectedValidationOutlined"
UpdateSourceTrigger="PropertyChanged">
<Binding.ValidationRules>
<demoAppDomain:NotEmptyValidationRule ValidatesOnTargetUpdated="True" />
</Binding.ValidationRules>
</Binding>
</ComboBox.SelectedItem>
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay HorizontalAlignment="Left" UniqueKey="comboboxes_helpertext_outlined_combobox">
<ComboBox Width="256"
materialDesign:HintAssist.HelperText="Helper text"
materialDesign:HintAssist.Hint="With helper text"
Style="{StaticResource MaterialDesignOutlinedComboBox}">
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
</ComboBox>
</smtx:XamlDisplay>
</StackPanel>
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Rotation Clockwise" />
<StackPanel Margin="0,8,0,0">
<CheckBox x:Name="CheckBoxClockwiseRotateContent"
Margin="16,0"
Content="Rotate drop-down content"
IsChecked="False" />
<StackPanel Margin="16,15,0,0" Orientation="Horizontal">
<smtx:XamlDisplay Margin="0" UniqueKey="clockwise_1">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignFloatingHintComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=-90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay Margin="150,0" UniqueKey="clockwise_2">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignFilledComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=-90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay Margin="0" UniqueKey="clockwise_3">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignOutlinedComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=-90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
</StackPanel>
</StackPanel>
<TextBlock Style="{StaticResource PageSectionTitleTextBlock}" Text="Rotation Counter-Clockwise" />
<StackPanel Margin="0,8,0,0">
<CheckBox x:Name="CheckBoxCounterClockwiseRotateContent"
Margin="16,0"
Content="Rotate drop-down content"
IsChecked="False" />
<StackPanel Margin="16,15,0,0" Orientation="Horizontal">
<smtx:XamlDisplay Margin="0" UniqueKey="counter_clockwise_1">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesCounterClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignFloatingHintComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="-90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxCounterClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay Margin="150,0" UniqueKey="counter_clockwise_2">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesCounterClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignFilledComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="-90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxCounterClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
<smtx:XamlDisplay Margin="0" UniqueKey="counter_clockwise_3">
<ComboBox Width="150"
materialDesign:ComboBoxAssist.CustomPopupPlacementCallback="{x:Static materialDesignDemo:ComboBoxes.Rotate90DegreesCounterClockWiseCallback}"
materialDesign:HintAssist.Hint="Selected Item"
Style="{StaticResource MaterialDesignOutlinedComboBox}">
<ComboBox.LayoutTransform>
<RotateTransform Angle="-90" />
</ComboBox.LayoutTransform>
<ComboBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation="Vertical">
<StackPanel.LayoutTransform>
<RotateTransform Angle="{Binding ElementName=CheckBoxCounterClockwiseRotateContent, Path=IsChecked, Converter={converters:BooleanToDoubleConverter TrueValue=90, FalseValue=0}}" />
</StackPanel.LayoutTransform>
</StackPanel>
</ItemsPanelTemplate>
</ComboBox.ItemsPanel>
<ComboBoxItem Content="Item 1" />
<ComboBoxItem Content="Item 2" />
<ComboBoxItem Content="Item 3" />
<ComboBoxItem Content="Item 4" />
</ComboBox>
</smtx:XamlDisplay>
</StackPanel>
</StackPanel>
</StackPanel>
</UserControl>