Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

MenuItem.Unchecked Event

Definition

Namespace:
System.Windows.Controls
Assembly:
PresentationFramework.dll

Important

Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.

Occurs when a MenuItem is unchecked.

public:
 event System::Windows::RoutedEventHandler ^ Unchecked;
public event System.Windows.RoutedEventHandler Unchecked;
member this.Unchecked : System.Windows.RoutedEventHandler 
Public Custom Event Unchecked As RoutedEventHandler 

Event Type

Examples

The following example demonstrates handling the Unchecked event.

<MenuItem Header="_Bold" IsCheckable="True"
 Checked="Bold_Checked"
 Unchecked="Bold_Unchecked"/>
private void Bold_Checked(object sender, RoutedEventArgs e)
{
 textBox1.FontWeight = FontWeights.Bold;
}

private void Bold_Unchecked(object sender, RoutedEventArgs e)
{
 textBox1.FontWeight = FontWeights.Normal;
}
Private Sub Bold_Checked(ByVal sender As Object, ByVal e As RoutedEventArgs)
 textBox1.FontWeight = FontWeights.Bold
End Sub

Private Sub Bold_Unchecked(ByVal sender As Object, ByVal e As RoutedEventArgs)
 textBox1.FontWeight = FontWeights.Normal
End Sub

Remarks

Routed Event Information

Item Value
Identifier field UncheckedEvent
Routing strategy Bubbling
Delegate RoutedEventHandler

Applies to


Feedback

Was this page helpful?