BililiveRecorder/BililiveRecorder.WPF/App.xaml

20 lines
830 B
Plaintext
Raw Normal View History

2020-11-27 18:51:02 +08:00
<Application
2018-03-12 18:57:20 +08:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:BililiveRecorder.WPF"
2020-11-27 18:51:02 +08:00
xmlns:ui="http://schemas.modernwpf.com/2019"
x:Class="BililiveRecorder.WPF.App"
2018-11-10 11:55:30 +08:00
Startup="CheckUpdate"
2020-11-27 18:51:02 +08:00
StartupUri="NewMainWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ui:ThemeResources />
<ui:XamlControlsResources />
<!-- Other merged dictionaries here -->
</ResourceDictionary.MergedDictionaries>
<!-- Other app resources here -->
</ResourceDictionary>
</Application.Resources>
</Application>