Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

PropertyGridControl.MenuCustomizations Property

Allows you to customize a set of property menu items for the entire property grid by adding new menu items or removing existing ones. This is a dependency property.

Namespace: DevExpress.Xpf.PropertyGrid

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

NuGet Package: DevExpress.Wpf.PropertyGrid

#Declaration

public ObservableCollection<IControllerAction> MenuCustomizations { get; }

#Property Value

Type Description
ObservableCollection<IControllerAction>

A ObservableCollection<T><IControllerAction,> object.

#Remarks

Use the MenuCustomizations property to customize a set of menu items for all the properties in the entire property grid.

To add or remove menu items for a particular property, use the PropertyDefinition‘s PropertyDefinition.MenuCustomizations property.

The property’s PropertyDefinition.MenuCustomizations property has higher precedence than the control’s MenuCustomizations property.

To learn more about property menu customizations, see Property Menu.

See Also