Files
SamplePreSystem-CS/SamplePreSystem.UI/Styles/BaseTreeView.xaml

13 lines
652 B
Plaintext
Raw Normal View History

2026-04-30 11:34:41 +08:00
<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>