Completed
Last Updated: 20 Jan 2021 09:46 by ADMIN
Release LIB 2020.3.1228 (12/28/2020)
Martin Ivanov
Created on: 22 Dec 2020 09:39
Category: UI for WPF
Type: Bug Report
0
ScrollViewer: The scrollbars in the Fluent theme overlap the content when the palette's ScrollBarsMode is Normal

When the FluentPalette.Palette.ScrollBarsMode property is set to Normal, the ScrollViewer scrollbars overlap the content area. This should not happen.

To resolve this, set the ThemeHelper.ScrollBarsMode attached property of the ScrollViewer controls using an implicit style.

<Window.Resources>
	<Style TargetType="ScrollViewer">
		<Setter Property="helpers:ThemeHelper.ScrollBarsMode" Value="{telerik:FluentResource ResourceKey=ScrollBarsMode}"/>
	</Style>
</Window.Resources>

0 comments