DragReorder of Tabs

With the official Q3 2012 release of UI for Silverlight we introduced the DragReorder feature of RadDocking control. This feature will help end users to easily reorder existing RadPanes in a specific RadPaneGroup.

Enabling and Disabling DragReorder

By default the DragReorder feature is disabled. In order to enable it you will need to set the AllowDragReorder property of the control to true.

The next code snippet shows how to enable the DragReorder feature:

<telerik:RadDocking AllowDragReorder="True"> 
    ... 
</telerik:RadDocking> 

The following screenshots demonstrate the behavior of RadDocking when DragReorder feature is enabled:

  • When RadPaneGroup is in DocumentHost:

raddocking-features-dragreorder-1

raddocking-features-dragreorder-2

  • When RadPaneGroup is not in DocumentHost:

raddocking-features-dragreorder-3

raddocking-features-dragreorder-4

In this article