When the amount of tabs exceeds my window, the next tab only half opens and there is no scroll button to scroll to see the full tab. If I click the left scroll button the right one magically appears, but not initially or automatically.
- Can I get the scroll button to display in this scenario?
- Can I just get it to display the full tab by automatically scrolling to the end?
Here is my code and I have also attached an image of the half tab
<
telerik:RadTabControl
x:Name
=
"TabControl"
Grid.Row
=
"2"
ItemsSource
=
"{Binding Tabs}"
SelectedItem
=
"{Binding SelectedTabItem, Mode=TwoWay}"
ItemTemplate
=
"{StaticResource ItemTemplate}"
ContentTemplate
=
"{StaticResource ContentTemplate}"
Width
=
"Auto"
Height
=
"Auto"
HorizontalContentAlignment
=
"Stretch"
VerticalContentAlignment
=
"Stretch"
SupressSelectedContentTemplateReapplying
=
"True"
SelectedItemRemoveBehaviour
=
"SelectNext"
AllowDragReorder
=
"True"
Loaded
=
"TabControl_Loaded"
SelectionChanged
=
"TabControl_OnSelectionChanged"
TabStripPlacement
=
"Right"
/>