RadControls for WinForms

You can add these item types to the CommandBarStripElement from the context menu or the RadElement Collection Editor:

Item Types

NameExampleDescription
CommandBarButton
commandbar-item-types 001
Displays a button containing text, an image, or both. Set the DrawText property to true to display the text of the button. Use the TextImageRelation property to control the layout of image and text: Overlay, ImageAboveText, TextAboveImage, ImageBeforeText, TextBeforeImage.
CommandBarToggleButton
commandbar-item-types 002
Displays a button that can toggle between "pressed" and "unpressed" states. The button element ToggleState property indicates the current condition of the button.
CommandBarTextBox
commandbar-item-types 003
Displays a text box that can accept user input. Use the Text property to get and set its content.
CommandBarDropDownList
commandbar-item-types 004
Displays a dropdown list. Use the SelectedIndexChanged and SelectedValueChanged events to respond to user choices.
CommandBarLabel
commandbar-item-types 005
Displays static text on a strip element. Set the Text property to change the content.
CommandBarSeparatorItem
commandbar-item-types 006
Adds empty space between other elements on a strip element.
CommandBarDropDownButton
commandbar-item-types 007
Displays a button with a drop-down arrow. Clicking the drop-down arrow displays a menu of choices. Use the Items property to populate the menu. Attach event handlers for individual element events in code to respond to user actions.
CommandBarSplitButton
commandbar-item-types 008
Displays a button with a drop-down arrow. Clicking the drop-down arrow displays a menu of choices. Clicking the button has the same effect as clicking the default item from the menu.
CommandBarHostItem
commandbar-item-types 009
Item that can host any RadElement. Use the HostedElement property to get/set the element that you are hosting.