增加摄像头中控台项目

This commit is contained in:
2025-12-30 10:53:02 +08:00
parent 471b8c50b6
commit de3adf0339
31 changed files with 2736 additions and 0 deletions

View File

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