UWUVCI-AIO-WPF/UWUVCI AIO WPF/App.xaml
2020-06-10 10:51:52 +02:00

20 lines
1.3 KiB
XML

<Application x:Class="UWUVCI_AIO_WPF.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:UWUVCI_AIO_WPF"
Startup="Application_Startup"
>
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml" />
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Indigo.xaml" />
</ResourceDictionary.MergedDictionaries>
<local:MainViewModel x:Key="mvm"/>
<FontFamily x:Key="NFont">pack://application:,,,/Font/#FOT-RodinNTLG Pro B</FontFamily>
</ResourceDictionary>
</Application.Resources>
</Application>