19 lines
618 B
Plaintext
19 lines
618 B
Plaintext
|
|
<!--
|
||
|
|
App.xaml - Better-Seewo 安装程序应用程序入口
|
||
|
|
定义应用程序级别的资源和启动设置
|
||
|
|
作者:雾启工作室
|
||
|
|
-->
|
||
|
|
|
||
|
|
<Application x:Class="Better_Seewo.Installer.App"
|
||
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
|
StartupUri="MainWindow.xaml">
|
||
|
|
|
||
|
|
<!-- 应用程序级资源 -->
|
||
|
|
<Application.Resources>
|
||
|
|
<!-- 安装程序 Fluent Design 深色主题 -->
|
||
|
|
<ResourceDictionary Source="Themes/InstallerTheme.xaml" />
|
||
|
|
</Application.Resources>
|
||
|
|
|
||
|
|
</Application>
|