Is there a way to add your controls to a Context menu? My application uses the NotifyIcon Component which links to a Context menustrip. I would like to be able to add your controls to this. Or is there a completely different approach?
Thank you.
1 Answer, 1 is accepted
0
Jordan
Telerik team
answered on 04 May 2007, 08:30 AM
Hello Scott,
We will put a RadContextMenu control in our TODO list.
For now you can use ContextMenuStrip instead of ContextMenu.
The following code shows how to add a RadButton to a ContextMenuStrip:
RadButton radButton = new RadButton();
radButton.Text = "RadButton";
radButton.ThemeName = "Telerik";
ToolStripControlHost controlHost = new ToolStripControlHost(radButton);