Files
Ayay/SHH.CameraDashboard/App.xaml

26 lines
1.3 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<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>