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.v19.1.dll
Declaration
public ObservableCollection<IControllerAction> RibbonActions { get; }
Public ReadOnly Property RibbonActions As ObservableCollection(Of IControllerAction)
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:
- AppointmentContextMenu
- AppointmentDropContextMenuActions
- CellContextMenuActions
- TimeRulerContextMenuActions
Examples
NOTE
A complete sample project is available at https://github.com/DevExpress-Examples/how-to-provide-the-ribbon-ui-for-the-scheduler-control-t544922.