| 12345678910111213141516171819202122232425262728 |
- <prism:PrismApplication x:Class="TeamAAS.App"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:local="clr-namespace:TeamAAS"
- xmlns:hc="https://handyorg.github.io/handycontrol"
- xmlns:prism="http://prismlibrary.com/">
- <prism:PrismApplication.Resources>
- <ResourceDictionary>
- <ResourceDictionary.MergedDictionaries>
- <!-- 官方 HandyControl 主题字典(SkinDefault=色板,Theme=画刷);
- 深浅色/主色切换由 App.xaml.cs 的 ApplyTheme 通过 Theme.Skin + AccentColor 完成 -->
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml"/>
- <ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml"/>
- </ResourceDictionary.MergedDictionaries>
- <String xmlns="clr-namespace:System;assembly=mscorlib" x:Key="CenterTitleText">TeamAAS</String>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="CenterTitleFontSize">14</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="TopBarHeight">40</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="NavButtonHeight">36</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="NavButtonWidth">80</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="NavButtonFontSize">13</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="NavIconSize">16</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="ThemeIconFontSize">14</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="StatusBarHeight">32</Double>
- <Double xmlns="clr-namespace:System;assembly=mscorlib" x:Key="StatusBarFontSize">12</Double>
- </ResourceDictionary>
- </prism:PrismApplication.Resources>
- </prism:PrismApplication>
|