File tree Expand file tree Collapse file tree 2 files changed +19
-0
lines changed
src/MaterialDesign3.Demo.Wpf Expand file tree Collapse file tree 2 files changed +19
-0
lines changed 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