13 lines
610 B
XML
13 lines
610 B
XML
<ResourceDictionary
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:local="clr-namespace:WPFluent.Controls"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/WPFluent;component/Controls/Scroll/ScrollViewer.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<Style BasedOn="{StaticResource DefaultScrollViewerStyle}" TargetType="{x:Type local:SmoothScrollViewer}">
|
|
<Setter Property="PanningMode" Value="Both" />
|
|
</Style>
|
|
|
|
</ResourceDictionary>
|