Files
Wino-Mail/Wino.Mail.WinUI/App.xaml

17 lines
682 B
Plaintext
Raw Normal View History

2024-07-20 03:07:21 +02:00
<?xml version="1.0" encoding="utf-8" ?>
2024-07-12 01:11:39 +02:00
<Application
2024-07-19 20:31:13 +02:00
x:Class="Wino.Mail.WinUI.App"
2024-07-12 01:11:39 +02:00
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
2024-07-19 20:31:13 +02:00
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:Wino.Mail.WinUI">
2024-07-12 01:11:39 +02:00
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<XamlControlsResources xmlns="using:Microsoft.UI.Xaml.Controls" />
2024-07-20 03:07:21 +02:00
<!-- Other merged dictionaries here -->
2024-07-12 01:11:39 +02:00
</ResourceDictionary.MergedDictionaries>
2024-07-20 03:07:21 +02:00
<!-- Other app resources here -->
2024-07-12 01:11:39 +02:00
</ResourceDictionary>
</Application.Resources>
</Application>