Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBret Johnson <bret.johnson@microsoft.com>2020-01-23 06:34:02 +0300
committerBret Johnson <bret.johnson@microsoft.com>2020-01-23 06:34:02 +0300
commit730df221b64da129d10d9bebece138108b4bc406 (patch)
treeb5dbb96730a934ae4426c55f8ecdfde8f8933a8e /Xamarin.PropertyEditing.Windows
parentbcac5c63f19a098b5bfdf335a5acaeba5350f6c9 (diff)
Keep background change for focus, in addition to focus rect
Diffstat (limited to 'Xamarin.PropertyEditing.Windows')
-rw-r--r--Xamarin.PropertyEditing.Windows/Themes/Resources.xaml3
1 files changed, 3 insertions, 0 deletions
diff --git a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
index 3bf8a45..e50445c 100644
--- a/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
+++ b/Xamarin.PropertyEditing.Windows/Themes/Resources.xaml
@@ -225,6 +225,9 @@
<Setter Property="Background" Value="{DynamicResource ToggleItemMouseOverBackgroundBrush}" />
<Setter Property="Foreground" Value="{DynamicResource ToggleItemMouseOverForegroundBrush}" />
</Trigger>
+ <Trigger Property="IsFocused" Value="True">
+ <Setter Property="Background" Value="{DynamicResource ToggleItemMouseOverBackgroundBrush}" />
+ </Trigger>
<Trigger Property="IsPressed" Value="True">
<Setter Property="BorderBrush" Value="{DynamicResource ToggleItemPressedBorderBrush}" />
<Setter Property="Background" Value="{DynamicResource ToggleItemPressedBackgroundBrush}" />