mirror of
https://github.com/casksteven/Sweaty-Launcher.git
synced 2024-06-24 21:09:27 +00:00
25 lines
957 B
XML
25 lines
957 B
XML
<Application
|
|
x:Class="Launcher.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:Launcher"
|
|
StartupUri="MainWindow.xaml">
|
|
<Application.Resources>
|
|
|
|
<ResourceDictionary>
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="/Style/NavigationItemContainerStyle.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/Panuon.WPF.UI;component/Control.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
<DropShadowEffect
|
|
x:Key="defaultShadow"
|
|
BlurRadius="10"
|
|
Opacity="0.2"
|
|
ShadowDepth="0" />
|
|
<FontFamily x:Key="remix">pack://application:,,,/Launcher;component/Res/#remixicon</FontFamily>
|
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
</Application>
|