Difference between IsMouseOver and IsHighlighted in WPF Styles

As in the title, I was interested to know the difference between property triggers IsMouseOverand IsHighlightedWPF styles.

Somebody knows?

+4
source share
1 answer

IsHighlightedtakes into account any input device (such as a keyboard) for displaying logical focus. This is not a level dependency property DependencyObject, as I examined it, available only for the following three controls in WPF:

System.Windows.Controls.ComboBoxItem.IsHighlighted
System.Windows.Controls.MenuItem.IsHighlighted
System.Windows.Controls.Primitives.CalendarDayButton.IsHighlighted
+4
source

All Articles