20 lines
659 B
Plaintext
20 lines
659 B
Plaintext
|
|
<!--
|
||
|
|
App.xaml - Better-Seewo 管理器应用程序入口
|
||
|
|
定义应用程序级别的资源和启动设置
|
||
|
|
-->
|
||
|
|
|
||
|
|
<Application x:Class="Better_Seewo.Manager.App"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
StartupUri="MainWindow.xaml">
|
||
|
|
|
||
|
|
<!-- 应用程序级资源 -->
|
||
|
|
<Application.Resources>
|
||
|
|
<!-- 深色主题(默认) -->
|
||
|
|
<ResourceDictionary Source="Themes/DarkTheme.xaml" />
|
||
|
|
<!-- 浅色主题 -->
|
||
|
|
<ResourceDictionary Source="Themes/LightTheme.xaml" />
|
||
|
|
</Application.Resources>
|
||
|
|
|
||
|
|
</Application>
|