添加项目文件。

This commit is contained in:
2026-04-30 11:34:41 +08:00
parent a8539ccaac
commit 80635aa46e
181 changed files with 16378 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<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>