21 lines
968 B
XML
21 lines
968 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Application
|
|
x:Class="MangaReader.WinUI.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="using:MangaReader.WinUI">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
|
|
<!-- Other merged dictionaries here -->
|
|
<ResourceDictionary Source="/Resources/Converters.xaml"/>
|
|
<ResourceDictionary Source="/Resources/Fonts.xaml"/>
|
|
<ResourceDictionary Source="/Resources/Styles.xaml"/>
|
|
<ResourceDictionary Source="/Resources/ViewModels.xaml"/>
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<!-- Other app resources here -->
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application>
|