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 159159 <ColumnDefinition MinWidth =" 100" />
160160 <ColumnDefinition MinWidth =" 100" />
161161 <ColumnDefinition MinWidth =" 100" />
162+ <ColumnDefinition MinWidth =" 100" />
162163 </Grid .ColumnDefinitions>
163164
164165 <TextBlock Grid.Row=" 1"
202203 Grid.Column=" 6"
203204 Style =" {StaticResource FieldHeader}"
204205 Text =" NumericUpDown" />
206+ <TextBlock Grid.Row=" 0"
207+ Grid.Column=" 7"
208+ Style =" {StaticResource FieldHeader}"
209+ Text =" AutoSuggestBox " />
205210
206211 <TextBox Grid.Row=" 1" Grid.Column=" 1" />
207212 <TextBox Grid.Row=" 2"
269274 Grid.Column=" 6"
270275 Style =" {StaticResource MaterialDesignOutlinedNumericUpDown}" />
271276
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+
272288 </Grid >
273289 </StackPanel >
274290 </GroupBox >
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ private static void SetValue(Control control)
7373 {
7474 switch ( control )
7575 {
76+ case MaterialDesignThemes . Wpf . AutoSuggestBox autoSuggestBox :
77+ autoSuggestBox . Text = nameof ( MaterialDesignThemes . Wpf . AutoSuggestBox . Text ) ;
78+ break ;
7679 case TextBox textBox :
7780 textBox . Text = nameof ( TextBox . Text ) ;
7881 break ;
Original file line number Diff line number Diff line change 148148 <ColumnDefinition MinWidth =" 100" />
149149 <ColumnDefinition MinWidth =" 100" />
150150 <ColumnDefinition MinWidth =" 100" />
151+ <ColumnDefinition MinWidth =" 100" />
151152 </Grid .ColumnDefinitions>
152153
153154 <TextBlock Grid.Row=" 1"
191192 Grid.Column=" 6"
192193 Style =" {StaticResource FieldHeader}"
193194 Text =" NumericUpDown" />
195+ <TextBlock Grid.Row=" 0"
196+ Grid.Column=" 7"
197+ Style =" {StaticResource FieldHeader}"
198+ Text =" AutoSuggestBox " />
194199
195200 <TextBox Grid.Row=" 1" Grid.Column=" 1" />
196201 <TextBox Grid.Row=" 2"
258263 Grid.Column=" 6"
259264 Style =" {StaticResource MaterialDesignOutlinedNumericUpDown}" />
260265
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+
261277 </Grid >
262278 </StackPanel >
263279 </GroupBox >
Original file line number Diff line number Diff line change @@ -73,6 +73,9 @@ private static void SetValue(Control control)
7373 {
7474 switch ( control )
7575 {
76+ case MaterialDesignThemes . Wpf . AutoSuggestBox autoSuggestBox :
77+ autoSuggestBox . Text = nameof ( MaterialDesignThemes . Wpf . AutoSuggestBox . Text ) ;
78+ break ;
7679 case TextBox textBox :
7780 textBox . Text = nameof ( TextBox . Text ) ;
7881 break ;
You can’t perform that action at this time.
0 commit comments