Skip to main content
All docs
V23.2

PropertyGridControl.IsMenuVisible Property

Gets whether a property grid menu is open.

Namespace: DevExpress.Xpf.PropertyGrid

Assembly: DevExpress.Xpf.PropertyGrid.v23.2.dll

NuGet Package: DevExpress.Wpf.PropertyGrid

Declaration

public bool IsMenuVisible { get; }

Property Value

Type Description
Boolean

true if a property grid menu is open; otherwise, false.

Remarks

Property Menu

The Property Menu allows users to invoke property-specific commands. This menu can be customized. For example, you can remove existing menu items and add new items.

The PropertyGridControl invokes the Property Menu in the following cases:

  1. A user clicks the property’s Menu Button.
  2. A user right-clicks the property (the PropertyGridControl.ShowMenu property should be set to OnRightClick or Always).
  3. You call the ShowPropertyMenu(String) method.

Property Grid - Property Menu

New Item Menu

The collection‘s New Item Menu allows users to add items to the collection. The New Item Initializer specifies item types displayed in this menu.

The PropertyGridControl invokes the New Item Menu in the following cases:

  1. A user clicks the collection’s Add Item button.
  2. You call the ShowNewItemMenu(String) method.

Property Grid - New Item Menu

See Also