Files
2026-04-30 11:34:41 +08:00

13 lines
652 B
XML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<!-- 仅针对字体、间距的TreeView极简美化样式 -->
<Style TargetType="TreeView">
<!-- TreeView整体内边距避免控件紧贴窗口 -->
<Setter Property="Padding" Value="8" />
<!-- 整体背景:白色更清爽 -->
<Setter Property="Background" Value="White" />
<!-- 滚动条优化:避免文字被遮挡 -->
<Setter Property="ScrollViewer.HorizontalScrollBarVisibility" Value="Auto" />
</Style>
</ResourceDictionary>