Floating Strips
A CommandBarStripElement object can be docked to the command bar or floated above the form. In addition, a CommandBarStripElement can be dragged from the RadCommandBar control that currently hosts it and docked to another.
Basics
The ability of a CommandBarStripElement object to float is controlled by the commandbar's EnableDragging and EnableFloating properties. In order to allow a CommandBarStripElement to float, both the EnableDragging and EnableFloating properties must be set to true. Setting only the EnableFloating property to true has no effect on the floating behavior. The image below shows a RadCommandBar with two strips one of which is floating:
A CommandBarStrip element is made floating when it is dragged outside the area of its control. You can dock it again by moving it with mouse over any RadCommandBar control.
Events
There are some events that provide you with control over the floating/docking process.
- FloatingStripCreating event is fired when a strip is about to be made floating. The following example shows how to prevent the strip “OptionsStrip” from becoming floating.
- FloatingStripCreated event is fired when the floating form is shown. The following example shows how to set the caption text of the floating form:
- FloatingStripDocking event is fired when a floating strip is about to be docked to a RadCommandBar control. The following example shows how to prevent the strip with name “OptionsStrip” from being docked.
- FloatingStripDocked event is fired when a floating strip has docked to a RadCommandBar control. The following example shows a sample usage of this event.