mirror of
https://github.com/QL-Win/QuickLook.git
synced 2026-05-08 03:06:29 +08:00
24 lines
1.3 KiB
XML
24 lines
1.3 KiB
XML
<Application x:Class="QuickLook.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:QuickLook"
|
|
xmlns:ui="http://schemas.lepo.co/wpfui/2022/xaml"
|
|
xmlns:vio="http://schemas.lepo.co/wpfui/2022/xaml/violeta"
|
|
Exit="App_OnExit"
|
|
ShutdownMode="OnExplicitShutdown"
|
|
Startup="Application_Startup">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ui:ThemesDictionary />
|
|
<ui:ControlsDictionary />
|
|
<vio:ThemesDictionary />
|
|
<vio:ControlsDictionary />
|
|
<ResourceDictionary Source="/QuickLook.Common;component/Styles/ScrollBarStyleDictionary.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<!-- Even though Segoe MDL2 Assets is obsoleted, retain it here for compatibility with legacy plugins. -->
|
|
<FontFamily x:Key="SegoeMDL2">./Fonts/#Segoe MDL2 Assets</FontFamily>
|
|
<FontFamily x:Key="SegoeFluent">./Fonts/#Segoe Fluent Icons</FontFamily>
|
|
</ResourceDictionary>
|
|
</Application.Resources>
|
|
</Application> |