Menu.IsMainMenu Property

Definition

Gets or sets a value that indicates whether this Menu receives a main menu activation notification.

public:
 property bool IsMainMenu { bool get(); void set(bool value); };
public bool IsMainMenu { get; set; }
member this.IsMainMenu : bool with get, set
Public Property IsMainMenu As Boolean

Property Value

true if the menu receives a main menu activation notification; otherwise, false. The default is true.

Examples

The following example shows how to use the IsMainMenu property to create a Menu that does not receive activation notification.

<Menu Margin="10,10,5,5" Width="80" Background ="White" Grid.Column="0" Grid.Row="3" 
     HorizontalAlignment="Left" IsMainMenu="false">

Remarks

If there are multiple Menu controls on a page, Menu controls that should not receive ALT or F10 key notifications should set this property to false.

Dependency Property Information

Identifier field IsMainMenuProperty
Metadata properties set to true None

Applies to

See also