This question is locked. New answers and comments are not allowed.
Hi,
I have a vertical tab control with TabStripPlacement set to Left. In this scenario I get a unwanted gray line. (see TabControl StripLeft.PNG)
When I change the code to tab strip placed on the Top it is correctly rendered with no line (see TabControl StripTop.PNG)
Here is my xaml:
How can I get rid of the gray line when the TabStripPlacement is set to Left?
Mike
I have a vertical tab control with TabStripPlacement set to Left. In this scenario I get a unwanted gray line. (see TabControl StripLeft.PNG)
When I change the code to tab strip placed on the Top it is correctly rendered with no line (see TabControl StripTop.PNG)
Here is my xaml:
<Grid x:Name="LayoutRoot"> <telerik:RadTabControl Grid.Row="2" TabStripPlacement="Left" TabOrientation="Vertical" Align="Right" > <telerik:RadTabItem Height="Auto" VerticalAlignment="Top" Header="Test 1" > <Grid Background="White"></Grid> </telerik:RadTabItem> <telerik:RadTabItem Height="Auto" VerticalAlignment="Top" Header="Test 2" > <Grid Background="White"></Grid> </telerik:RadTabItem> </telerik:RadTabControl></Grid>Mike