This question is locked. New answers and comments are not allowed.
Hi,
Our company is evaluating the migration of the current docking manager library for our Silverlight application.
In order to fill the gaps with the current one, I'm trying to allow tab reordering of tabbed component, dragging the tab with the left button without the need to undock and then redock it.
I've tried to enable the RadPaneGroup.AllowDragReorder boolean property of the tab groups from XAML, but with no effect.
In addition, we need this to be the default behavior for tab groups created tabbing component togheter (not by code from a specific PaneGroup). Is that possible? We are not using the DocumentHost behavior.
Thank you,
Luciano
<tk:RadDocking x:Name="DockingRoot" HasDocumentHost="False" >
<tk:RadSplitContainer InitialPosition="DockedLeft" >
<tk:RadPaneGroup AllowDragReorder="True" >
<tk:RadPane Header="Red Border">
<Border BorderThickness="2" BorderBrush="Red" />
</tk:RadPane>
<tk:RadPane Header="Blue Border">
<Border BorderThickness="2" BorderBrush="Blue" />
</tk:RadPane>
<tk:RadPane Header="Green Border">
<Border BorderThickness="2" BorderBrush="Green" />
</tk:RadPane>
</tk:RadPaneGroup>
</tk:RadSplitContainer>
</tk:RadDocking>
Our company is evaluating the migration of the current docking manager library for our Silverlight application.
In order to fill the gaps with the current one, I'm trying to allow tab reordering of tabbed component, dragging the tab with the left button without the need to undock and then redock it.
I've tried to enable the RadPaneGroup.AllowDragReorder boolean property of the tab groups from XAML, but with no effect.
In addition, we need this to be the default behavior for tab groups created tabbing component togheter (not by code from a specific PaneGroup). Is that possible? We are not using the DocumentHost behavior.
Thank you,
Luciano
<tk:RadDocking x:Name="DockingRoot" HasDocumentHost="False" >
<tk:RadSplitContainer InitialPosition="DockedLeft" >
<tk:RadPaneGroup AllowDragReorder="True" >
<tk:RadPane Header="Red Border">
<Border BorderThickness="2" BorderBrush="Red" />
</tk:RadPane>
<tk:RadPane Header="Blue Border">
<Border BorderThickness="2" BorderBrush="Blue" />
</tk:RadPane>
<tk:RadPane Header="Green Border">
<Border BorderThickness="2" BorderBrush="Green" />
</tk:RadPane>
</tk:RadPaneGroup>
</tk:RadSplitContainer>
</tk:RadDocking>