Skip to content

Commit 75bcb3e

Browse files
committed
#277 focus animation when navigating to ComboBox
focus animation when navigating to ComboBox via Tab button on the keyboard, similar to TextBox effect
1 parent 1390b36 commit 75bcb3e

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

MaterialDesignThemes.Wpf/Themes/MaterialDesignTheme.ComboBox.xaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@
427427
<wpf:Underline x:Name="Underline"
428428
Grid.ColumnSpan="2"
429429
IsActive="{Binding ElementName=PART_EditableTextBox, Path=IsKeyboardFocused}"
430-
Visibility="Collapsed" />
430+
Visibility="{Binding Path=(wpf:TextFieldAssist.DecorationVisibility), RelativeSource={RelativeSource TemplatedParent}}"/>
431431

432432
<wpf:ComboBoxPopup x:Name="PART_Popup"
433433
AllowsTransparency="true"
@@ -500,6 +500,9 @@
500500
</MultiTrigger.Conditions>
501501
<Setter Property="ScrollViewer.CanContentScroll" Value="false" />
502502
</MultiTrigger>
503+
<Trigger Property="IsKeyboardFocused" Value="true">
504+
<Setter TargetName="Underline" Property="IsActive" Value="True"/>
505+
</Trigger>
503506
</ControlTemplate.Triggers>
504507
</ControlTemplate>
505508

0 commit comments

Comments
 (0)