Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Toolstrip (obsolete as of Q3 2010) > RadToolstrip with [checkbox][Image][Text]

Not answered RadToolstrip with [checkbox][Image][Text]

Feed from this thread
  • suneetha inturi avatar

    Posted on Oct 6, 2009 (permalink)

    Hi
    I want to build a radtoolstrip with [checkbox][image][text] in dropdown.I have seen most of the controls(like radmenu item) have image and text.radcheckboxelement has [checkbox][image][text]  this feature.But we are unable to add it to radsplitbuttonelement.
    Is there any control which satisfies my requirement.

    Thanks
    Suneetha.

    Reply

  • Robert MVP avatar

    Posted on Oct 7, 2009 (permalink)

    Hello Suneetha,

     

    You can actually use a RadMenuContentItem to create this type of menu item. You can assign any RadElement based control to the ContentElement property of a RadMenuContentItem. Once doing that, you will simply need to add your newly created RadMenuContentItem to the items collection of the RadSplitButtonElement. Also, as shown in this example, you can add a RadElement based control directly to the items collection of a RadMenu and it will automatically create the RadMenuContentItem for you. This also works when done with the RadSplitButtonElement items collection:

     

    RadCheckBoxElement checkBoxElement = new RadCheckBoxElement();

    checkBoxElement.Image = global::MyProject.Properties.Resources.rss_small;

    checkBoxElement.Text = "Hello World";

     

    radSplitButtonElement1.Items.Add(checkBoxElement);

    - Robert

    Reply

  • Martin Vasilev Martin Vasilev admin's avatar

    Posted on Oct 9, 2009 (permalink)

    Hello Robert,

    Thank you very much for the answer. I would like only to provide the public links for the help topics below: RadMenu-Nested Controls and RadMenu-Nesting Controls Tutorial.

    Suneetha, hope Robert's code and help topics are useful. Do not hesitate to write us again if you need additional assistance.

    Greetings,
    Martin Vasilev
    the Telerik team

    Instantly find answers to your questions on the new Telerik Support Portal.
    Watch a video on how to optimize your support resource searches and check out more tips on the blogs.

    Reply

Back to Top

Skip Navigation LinksHome / Community & Support / Developer Productivity Tools Forums / WinForms > Toolstrip (obsolete as of Q3 2010) > RadToolstrip with [checkbox][Image][Text]
Related resources for "RadToolstrip with [checkbox][Image][Text]"

[ Features | Demos | Documentation | Knowledge Base | Telerik TV | Code Library | Step-by-step Tutorial | Blogs | Self-Paced Trainer ]