Files
ShrlAlgoToolkit/WPFluent/Controls/ItemsControl/ItemsControl.xaml
ShrlAlgo 4d35cadb56 更新
2025-07-11 09:20:23 +08:00

13 lines
770 B
XML

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style TargetType="{x:Type ItemsControl}">
<Setter Property="Foreground" Value="{DynamicResource TextFillColorPrimaryBrush}" />
<Setter Property="Background" Value="Transparent" />
<Setter Property="BorderBrush" Value="Transparent" />
<Setter Property="BorderThickness" Value="1" />
<Setter Property="ScrollViewer.CanContentScroll" Value="True" />
<Setter Property="ScrollViewer.PanningMode" Value="Both" />
<Setter Property="Stylus.IsFlicksEnabled" Value="False" />
<Setter Property="SnapsToDevicePixels" Value="True" />
</Style>
</ResourceDictionary>