Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

Pop-up Menus

The Scheduler has three types of context (pop-up) menus that enable an end-user to manage views, appointments and adjust time ruler settings. The SchedulerControl provides the dedicated event that allows you to customize context menus by adding or removing items.

#Context Menus Overview

Menu Type Description Image Property
Default Popup Menu This menu is shown when an end-user right-clicks time cells that do not contain any appointments. XtraScheduler_PopUpMenus_Default SchedulerMenuItemId.DefaultMenu
Appointment Popup Menu This menu is shown when an end-user right-clicks an appointment. XtraScheduler_PopUpMenus_Appointment SchedulerMenuItemId.AppointmentMenu
Time Ruler Popup Menu This menu is shown when an end-user right-clicks an time ruler. XtraScheduler_PopUpMenus_TimeRuler SchedulerMenuItemId.RulerMenu

#Customizing Context Menus in Code

Handle the SchedulerControl.PopupMenuShowing event to customize context menus at runtime. The SchedulerMenuItem enumeration lists all types of Scheduler popup menu items. Refer to the How to: Customize the Popup Menu topic for details.

See Also