Skip to main content

SchedulerControl.RibbonActions Property

Provides access to the collection of actions used to customize the SchedulerControl’s integrated ribbon UI.

Namespace: DevExpress.Xpf.Scheduling

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

NuGet Package: DevExpress.Wpf.Scheduling

Declaration

public ObservableCollection<IControllerAction> RibbonActions { get; }

Property Value

Type Description
ObservableCollection<IControllerAction>

A collection of ribbon customization actions.

Remarks

Add the necessary customization actions to the RibbonActions collection to modify the SchedulerControl’s integrated ribbon UI. You can create, modify or remove ribbon tabs, groups and individual items, as shown in the code snippet below.

To customize items in SchedulerControl’s context menus, access the menu actions using the following SchedulerControl.OptionsContextMenu properties:

Example

How to: Display the Integrated Ribbon for the Scheduler -> Customize the Ribbon UI

The following code snippets (auto-collected from DevExpress Examples) contain references to the RibbonActions 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