mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
24 lines
1.0 KiB
XML
24 lines
1.0 KiB
XML
<Application
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:BililiveRecorder.WPF"
|
|
xmlns:ui="http://schemas.modernwpf.com/2019"
|
|
x:Class="BililiveRecorder.WPF.App"
|
|
Startup="CheckUpdate"
|
|
SessionEnding="Application_SessionEnding"
|
|
StartupUri="NewMainWindow.xaml">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemeResources />
|
|
<ui:XamlControlsResources />
|
|
<!-- Other merged dictionaries here -->
|
|
<ResourceDictionary Source="Resources/IconResources.xaml" />
|
|
<ResourceDictionary Source="Resources/ConverterResources.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<!-- Other app resources here -->
|
|
<FontFamily x:Key="ContentControlThemeFontFamily">Microsoft YaHei</FontFamily>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|