2024-11-10 23:28:25 +01:00
|
|
|
<uwp:WinoApplication
|
2024-08-17 03:43:37 +02:00
|
|
|
x:Class="Wino.App"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:controls="using:Wino.Controls"
|
2024-08-24 16:16:56 +02:00
|
|
|
xmlns:selectors="using:Wino.Selectors"
|
|
|
|
|
xmlns:styles="using:Wino.Styles"
|
2024-11-10 23:28:25 +01:00
|
|
|
xmlns:uwp="using:Wino.Core.UWP"
|
2024-08-24 16:16:56 +02:00
|
|
|
xmlns:wino="using:Wino">
|
2024-04-18 01:44:37 +02:00
|
|
|
|
|
|
|
|
<Application.Resources>
|
|
|
|
|
<ResourceDictionary>
|
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
2024-11-10 23:28:25 +01:00
|
|
|
<uwp:CoreGeneric />
|
2024-08-29 00:19:24 +02:00
|
|
|
<ResourceDictionary Source="ms-appx:///CommunityToolkit.WinUI.Controls.Segmented/Segmented/Segmented.xaml" />
|
2024-11-10 23:28:25 +01:00
|
|
|
<ResourceDictionary Source="Styles/ItemContainerStyles.xaml" />
|
|
|
|
|
<ResourceDictionary Source="Styles/ImagePreviewControl.xaml" />
|
2025-02-22 00:43:39 +01:00
|
|
|
<ResourceDictionary Source="Styles/WebViewEditorControl.xaml" />
|
2024-08-29 00:19:24 +02:00
|
|
|
|
2024-08-26 01:07:51 +02:00
|
|
|
<styles:WinoExpanderStyle />
|
2024-11-27 01:43:03 +01:00
|
|
|
|
|
|
|
|
<!-- Last item must always be the default theme. -->
|
|
|
|
|
<ResourceDictionary Source="ms-appx:///Wino.Core.UWP/AppThemes/Mica.xaml" />
|
2024-04-18 01:44:37 +02:00
|
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
|
</Application.Resources>
|
2024-11-10 23:28:25 +01:00
|
|
|
</uwp:WinoApplication>
|