Hello Sasmita,
Thank you for writing.
You can easily add custom check box items to RadMenu using the following code:
RadMenuContentItem contentItem = new RadMenuContentItem(); |
RadCheckBoxElement checkBox = new RadCheckBoxElement(); |
checkBox.Text = "Some text"; |
contentItem.MinSize = new Size(100,16); |
contentItem.ContentElement = checkBox; |
contextMenu.Items.Insert(0,contentItem); |
Please, take look at
Telerik Quick-Start FraweWork (QSF) Section
RadMenuStrip -> Menu Item with custom elements. There are many examples with custom menu elements.
I hope this helps.
Don't hesitate to contact us if you have other questions.
Kind regards,
Peter
the Telerik team
Check out
Telerik Trainer, the state of the art learning tool for Telerik products.