Sweaty-Launcher/App.xaml
2023-02-10 21:19:10 -05:00

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>