wpf-devexpress-dot-xpf-dot-propertygrid-dot-propertygridcontrol-c9c475f9.md
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.v25.2.dll
NuGet Package : DevExpress.Wpf.PropertyGrid
public ObservableCollection<IControllerAction> MenuCustomizations { get; }
Public ReadOnly Property MenuCustomizations As ObservableCollection(Of IControllerAction)
| Type | Description |
|---|---|
| ObservableCollection<IControllerAction> |
A ObservableCollection<T><IControllerAction,> object.
|
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