Sweaty-Launcher/App.xaml

26 lines
957 B
Text
Raw Permalink Normal View History

2023-02-11 02:19:10 +00:00
<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>