This is a migrated thread and some comments may be shown as answers.

Using ContextMenuStrip

1 Answer 66 Views
Scheduler and Reminder
This is a migrated thread and some comments may be shown as answers.
Friedhelm
Top achievements
Rank 1
Friedhelm asked on 07 Aug 2012, 01:10 PM
Can I also show a ContextMenuStrip as popup menu instead of the RadContextMenu?

Best regards Friedhelm

1 Answer, 1 is accepted

Sort by
0
Accepted
Stefan
Telerik team
answered on 10 Aug 2012, 06:56 AM
Hi,

Thank you for writing.

I assume that your question concerns RadScheduler. If so, you can show a ContextMenuStrip by assigning a instance of it to the ContextMenuStrip property of RadScheduler and then, preventing the default context menu from showing:
void radScheduler1_ContextMenuShowing(object sender, Telerik.WinControls.UI.SchedulerContextMenuShowingEventArgs e)
{
    e.Cancel = true;
}

I hope that the provided information addresses your question. Let us know if you have any other questions.

Regards,
Stefan
the Telerik team
RadControls for WinForms Q2'12 release is now live! Check out what's new or download a free trial >>
Tags
Scheduler and Reminder
Asked by
Friedhelm
Top achievements
Rank 1
Answers by
Stefan
Telerik team
Share this question
or