MenuItem.IsPressed Property

Definition

Gets a value that indicates whether a MenuItem is pressed.

public:  property bool IsPressed {  public:
bool get(); protected:
 void set(bool value); };
[System.ComponentModel.Browsable(false)]
public bool IsPressed { get; protected set; }
[<System.ComponentModel.Browsable(false)>]
member this.IsPressed : bool with get, set
Public Property IsPressed As Boolean

Property Value

true if a MenuItem is pressed; otherwise, false. The default is false.

Attributes

Examples

The following example shows how to use the IsPressed property in a menu item style. When the menu item is pressed, the style of its foreground, text size, and text style change.

<Style x:Key="Triggers" TargetType="{x:Type MenuItem}">
  <Style.Triggers>
    <Trigger Property="MenuItem.IsPressed" Value="true">
      <Setter Property = "Foreground" Value="Red"/>
      <Setter Property = "FontSize" Value="16"/>
      <Setter Property = "FontStyle" Value="Italic"/>
    </Trigger>
  </Style.Triggers>
</Style>

Remarks

Starting with the .NET Framework version 3.0 Service Pack 1, the IsPressed 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 Versions and Dependencies.

Dependency Property Information

Identifier field IsPressedProperty
Metadata properties set to true None

Applies to