File tree Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Expand file tree Collapse file tree 4 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 159
159
<ColumnDefinition MinWidth =" 100" />
160
160
<ColumnDefinition MinWidth =" 100" />
161
161
<ColumnDefinition MinWidth =" 100" />
162
+ <ColumnDefinition MinWidth =" 100" />
162
163
</Grid .ColumnDefinitions>
163
164
164
165
<TextBlock Grid.Row=" 1"
202
203
Grid.Column=" 6"
203
204
Style =" {StaticResource FieldHeader}"
204
205
Text =" NumericUpDown" />
206
+ <TextBlock Grid.Row=" 0"
207
+ Grid.Column=" 7"
208
+ Style =" {StaticResource FieldHeader}"
209
+ Text =" AutoSuggestBox " />
205
210
206
211
<TextBox Grid.Row=" 1" Grid.Column=" 1" />
207
212
<TextBox Grid.Row=" 2"
269
274
Grid.Column=" 6"
270
275
Style =" {StaticResource MaterialDesignOutlinedNumericUpDown}" />
271
276
277
+ <materialDesign : AutoSuggestBox Grid.Row=" 1" Grid.Column=" 7" />
278
+ <materialDesign : AutoSuggestBox Grid.Row=" 2"
279
+ Grid.Column=" 7"
280
+ Style =" {StaticResource MaterialDesignFloatingHintAutoSuggestBox}" />
281
+ <materialDesign : AutoSuggestBox Grid.Row=" 3"
282
+ Grid.Column=" 7"
283
+ Style =" {StaticResource MaterialDesignFilledAutoSuggestBox}" />
284
+ <materialDesign : AutoSuggestBox Grid.Row=" 4"
285
+ Grid.Column=" 7"
286
+ Style =" {StaticResource MaterialDesignOutlinedAutoSuggestBox}" />
287
+
272
288
</Grid >
273
289
</StackPanel >
274
290
</GroupBox >
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ private static void SetValue(Control control)
73
73
{
74
74
switch ( control )
75
75
{
76
+ case MaterialDesignThemes . Wpf . AutoSuggestBox autoSuggestBox :
77
+ autoSuggestBox . Text = nameof ( MaterialDesignThemes . Wpf . AutoSuggestBox . Text ) ;
78
+ break ;
76
79
case TextBox textBox :
77
80
textBox . Text = nameof ( TextBox . Text ) ;
78
81
break ;
Original file line number Diff line number Diff line change 148
148
<ColumnDefinition MinWidth =" 100" />
149
149
<ColumnDefinition MinWidth =" 100" />
150
150
<ColumnDefinition MinWidth =" 100" />
151
+ <ColumnDefinition MinWidth =" 100" />
151
152
</Grid .ColumnDefinitions>
152
153
153
154
<TextBlock Grid.Row=" 1"
191
192
Grid.Column=" 6"
192
193
Style =" {StaticResource FieldHeader}"
193
194
Text =" NumericUpDown" />
195
+ <TextBlock Grid.Row=" 0"
196
+ Grid.Column=" 7"
197
+ Style =" {StaticResource FieldHeader}"
198
+ Text =" AutoSuggestBox " />
194
199
195
200
<TextBox Grid.Row=" 1" Grid.Column=" 1" />
196
201
<TextBox Grid.Row=" 2"
258
263
Grid.Column=" 6"
259
264
Style =" {StaticResource MaterialDesignOutlinedNumericUpDown}" />
260
265
266
+ <materialDesign : AutoSuggestBox Grid.Row=" 1" Grid.Column=" 7" />
267
+ <materialDesign : AutoSuggestBox Grid.Row=" 2"
268
+ Grid.Column=" 7"
269
+ Style =" {StaticResource MaterialDesignFloatingHintAutoSuggestBox}" />
270
+ <materialDesign : AutoSuggestBox Grid.Row=" 3"
271
+ Grid.Column=" 7"
272
+ Style =" {StaticResource MaterialDesignFilledAutoSuggestBox}" />
273
+ <materialDesign : AutoSuggestBox Grid.Row=" 4"
274
+ Grid.Column=" 7"
275
+ Style =" {StaticResource MaterialDesignOutlinedAutoSuggestBox}" />
276
+
261
277
</Grid >
262
278
</StackPanel >
263
279
</GroupBox >
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ private static void SetValue(Control control)
73
73
{
74
74
switch ( control )
75
75
{
76
+ case MaterialDesignThemes . Wpf . AutoSuggestBox autoSuggestBox :
77
+ autoSuggestBox . Text = nameof ( MaterialDesignThemes . Wpf . AutoSuggestBox . Text ) ;
78
+ break ;
76
79
case TextBox textBox :
77
80
textBox . Text = nameof ( TextBox . Text ) ;
78
81
break ;
You can’t perform that action at this time.
0 commit comments