My TabItems in RadTabControl won't move to the right if the control is located in second or third column.
I can drag and reorder TabItems from left to right or from right to left when the Grid.Column is set to "0" as follow.
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<telerik:RadTabControl Grid.Column="0" AllowDragReorder="True" AllowDragOverTab="True" >
<telerik:RadTabItem Header="test1"/>
<telerik:RadTabItem Header="test2"/>
</telerik:RadTabControl>
<Grid Grid.Column="1" Width="200"/>
</Grid>
But if the Grid.Column is not "0" and there is any control that takes space to the left of the RadTabControl, I can't drag TabItems from left to right but right to left.
<UserControl x:Class="SilverlightApplication1.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid Grid.Column="0" Width="200"/>
<telerik:RadTabControl Grid.Column="1" AllowDragReorder="True" AllowDragOverTab="True" >
<telerik:RadTabItem Header="test1"/>
<telerik:RadTabItem Header="test2"/>
</telerik:RadTabControl>
</Grid>
</UserControl>
This also happens in StackPanel with Orientation="Horizontal" if the RadTabControl isn't the first item of the StackPanel.
Please let me know how to solve this issue.
Best Regards.