实现轻量图标系统、图标选择器、本地图标导入和关联图标缓存。 补齐外观设置、捕获式快捷键录入、卡片右键菜单、分类图标编辑,以及分类和卡片拖拽排序。 同时将配置数据版本升级到 2,并在导入和加载时拒绝更高版本配置,避免误读未来格式。
39 lines
1.8 KiB
XML
39 lines
1.8 KiB
XML
<Application x:Class="PersonalToolbox.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:views="clr-namespace:PersonalToolbox.Views"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
<BooleanToVisibilityConverter x:Key="BooleanToVisibilityConverter" />
|
|
<views:IconKeyToTextConverter x:Key="IconKeyToTextConverter" />
|
|
<SolidColorBrush x:Key="AppBackgroundBrush" Color="#F7F8FA" />
|
|
<SolidColorBrush x:Key="PanelBackgroundBrush" Color="#FFFFFF" />
|
|
<SolidColorBrush x:Key="CardBackgroundBrush" Color="#FBFCFE" />
|
|
<SolidColorBrush x:Key="BadgeBackgroundBrush" Color="#EDF2F7" />
|
|
<SolidColorBrush x:Key="IconBackgroundBrush" Color="#E8F0FF" />
|
|
<SolidColorBrush x:Key="BorderBrushSoft" Color="#D9DEE7" />
|
|
<SolidColorBrush x:Key="PrimaryBrush" Color="#2563EB" />
|
|
<SolidColorBrush x:Key="PrimaryTextBrush" Color="#172033" />
|
|
<SolidColorBrush x:Key="SecondaryTextBrush" Color="#5C667A" />
|
|
|
|
<Style TargetType="Button">
|
|
<Setter Property="MinHeight" Value="32" />
|
|
<Setter Property="Padding" Value="12,4" />
|
|
</Style>
|
|
|
|
<Style TargetType="TextBox">
|
|
<Setter Property="Padding" Value="8,4" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
</Style>
|
|
|
|
<Style TargetType="ComboBox">
|
|
<Setter Property="Padding" Value="8,4" />
|
|
<Setter Property="VerticalContentAlignment" Value="Center" />
|
|
</Style>
|
|
|
|
<Style TargetType="ListBoxItem">
|
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
|
</Style>
|
|
</Application.Resources>
|
|
</Application>
|