I am trying to use the RadDocking and place the tabs on the right. However, when I set the TabStripPlacement property of the RadPaneGroup to "Right", the tabs take up the entire width of the control. When I set the width of the RadPane, the tab width is decreased, but the selected pane does not take up the remaining space. I have tried a lot of different things with no success - here is the xaml for the RadDocking:
Essentially, I'm trying to get the appearance of the TabControl with the TabStripPlacement property set to "Right" with the functionality of the RadDocking.
I would attach images, but I can't figure out how....
<telerik:RadDocking BorderBrush="{x:Null}" BorderThickness="0" Padding="0" Name="_dock" Margin="0"> <telerik:RadSplitContainer Name="_splitContainer" Width="450"> <telerik:RadPaneGroup TabStripPlacement="Right" TabOrientation="Horizontal"> <telerik:RadPane Header="Item Image" Content="This is an item image" /> <telerik:RadPane Header="Tags" Content="These are the tags" /> </telerik:RadPaneGroup> </telerik:RadSplitContainer> </telerik:RadDocking>Essentially, I'm trying to get the appearance of the TabControl with the TabStripPlacement property set to "Right" with the functionality of the RadDocking.
I would attach images, but I can't figure out how....