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

ReportDesigner.ContextMenuCustomizationActions Property

Provides access to the collection of context menu actions.

Namespace: DevExpress.Xpf.Reports.UserDesigner

Assembly: DevExpress.Xpf.ReportDesigner.v19.2.dll

Declaration

public ObservableCollection<IControllerAction> ContextMenuCustomizationActions { get; }

Property Value

Type Description
ObservableCollection<IControllerAction>

A dynamic data collection of objects implementing the IControllerAction interface.

Remarks

The following example illustrates how to access the Report Designer’s collection of context menu actions in XAML.

...
<dxrud:ReportDesigner x:Name="reportDesigner" >
    <dxrud:ReportDesigner.ContextMenuCustomizationActions>
    </dxrud:ReportDesigner.ContextMenuCustomizationActions>
</dxrud:ReportDesigner>
...

To learn more, see Customizing Context Menus in the Report Designer.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ContextMenuCustomizationActions 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