Skip to main content
A newer version of this page is available. .

PropertyDefinition.MenuCustomizations Property

Allows you to customize a current property menu by adding new menu items or removing existing ones. This is a dependency property.

Namespace: DevExpress.Xpf.PropertyGrid

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

Declaration

public ObservableCollection<IControllerAction> MenuCustomizations { get; }

Property Value

Type Description
ObservableCollection<IControllerAction>

A ObservableCollection<T><IControllerAction,> object.

Remarks

Use the MenuCustomizations property to add or remove menu items for a particular property.

To customize a set of menu items for all the properties in the entire property grid, use the control’s PropertyGridControl.MenuCustomizations property.

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

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

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the MenuCustomizations property.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also