This question is locked. New answers and comments are not allowed.
Hello
I have problem with Windows8 Theme and Horizontal Scrollbar control.
Thumb in Hozirontal Scrollbar is not visible and Vertical Scrollbar work fine.
I am in production with 2015.2.728.1050 and I tested with 2016.1.112.1050.
Have you a solution ?
Thank in advance.
MainWindow.xaml
<Grid x:Name="MainGrid" Background="#FFA6A6A6"> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="Auto"/> </Grid.RowDefinitions> <Grid Grid.Row="0"> <ScrollBar Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Stretch"/> </Grid> <Grid Grid.Row="1"> <ScrollBar Orientation="Vertical" VerticalAlignment="Stretch" HorizontalAlignment="Center"/> </Grid> </Grid>App.xaml
<Application.Resources> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/System.Windows.xaml"/> <ResourceDictionary Source="/Telerik.Windows.Themes.Windows8;component/Themes/Telerik.Windows.Controls.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> </Application.Resources>