Unplanned
Last Updated: 03 Jan 2017 21:24 by ADMIN
ADMIN
Milena
Created on: 30 Sep 2016 08:23
Category: TabControl
Type: Bug Report
1
TabControl: HorizontalScrollBar is not visible when the TabStripPlacement is set to Left and host control is with smaller size
Workaround: Set HorizontalScrollBarVisibility property to Visible in order to show the scrollbar: 
<telerik:RadTabControl ScrollViewer.HorizontalScrollBarVisibility="Visible" .../>

or use Loaded event of TabControl and change the Height in order to trigger SizeChanged:
private void xTab_Loaded(object sender, RoutedEventArgs e)
{
    this.Height++;
    this.Height--;
}
0 comments