26 lines
1.3 KiB
XML
26 lines
1.3 KiB
XML
<Application x:Class="SHH.CameraDashboard.App"
|
||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
xmlns:local="clr-namespace:SHH.CameraDashboard"
|
||
StartupUri="MainWindow.xaml">
|
||
<Application.Resources>
|
||
<ResourceDictionary>
|
||
<ResourceDictionary.MergedDictionaries>
|
||
<!-- 颜色主题(深色 / 浅色) -->
|
||
<ResourceDictionary Source="/Style/Themes/Colors.Dark.xaml"/>
|
||
<!-- 如果需要支持浅色主题,可以在 ThemeManager 中切换 Colors.Light.xaml -->
|
||
|
||
<!-- 尺寸定义(字号、圆角、边距等) -->
|
||
<ResourceDictionary Source="/Style/Themes/Sizes.xaml"/>
|
||
|
||
<!-- 通用控件样式(Button、TextBox、ListViewItem 等) -->
|
||
<ResourceDictionary Source="/Style/Themes/Styles.xaml"/>
|
||
|
||
<!-- 如果有专用控件样式,可以单独放在这里 -->
|
||
<!-- <ResourceDictionary Source="/Style/Themes/Wizard.xaml"/> -->
|
||
<!-- <ResourceDictionary Source="/Style/Themes/Diagnostic.xaml"/> -->
|
||
</ResourceDictionary.MergedDictionaries>
|
||
</ResourceDictionary>
|
||
</Application.Resources>
|
||
</Application>
|