Gets a value that indicates whether a MenuItem is highlighted. This is a dependency property.
<BrowsableAttribute(False)> _ Public ReadOnly Property IsHighlighted As Boolean
Dim instance As MenuItem Dim value As Boolean value = instance.IsHighlighted
[BrowsableAttribute(false)] public bool IsHighlighted { get; }
[BrowsableAttribute(false)] public: property bool IsHighlighted { bool get (); }
public function get IsHighlighted () : boolean
You cannot set this property in XAML.
Identifier field
IsHighlightedProperty
Metadata properties set to true
None
Starting with the .NET Framework version 3.0 Service Pack 1, the IsHighlighted property has a protected setter. To use this functionality, your application should target the .NET Framework version 3.5. For more information, see .NET Framework 3.5 Architecture.
The following example shows how to determine whether a menu item is highlighted.
private void Highlight(object sender, RoutedEventArgs e) { if (item1.IsHighlighted == true) { hlbtn.Content = "Item is highlighted."; } }
Windows 7, Windows Vista, Windows XP SP2, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003