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

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