Hi Paurnima,
Thank you for your interest in Syncfusion products.
There is no direct event to trigger the context menu item click action. As a workaround, we can get the context menu object and trigger the events manually like below,
foreach (MenuItem item in this.ScheduleControl1.GetScheduleHost().ContextMenu.MenuItems)
{
item.Click += item_Click;
}
void item_Click(object sender, EventArgs e)
{
MessageBox.show("Item clicked");
}
Please let me know if you have any concerns.
Regards,
Venkat.