2020-03-01 13:12:17 +00:00
|
|
|
<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"
|
2020-04-16 18:52:26 +00:00
|
|
|
Startup="Application_Startup"
|
|
|
|
>
|
2020-03-01 13:12:17 +00:00
|
|
|
<Application.Resources>
|
2020-06-10 08:51:52 +00:00
|
|
|
|
2020-03-01 13:12:17 +00:00
|
|
|
<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>
|
2020-03-01 15:52:59 +00:00
|
|
|
<local:MainViewModel x:Key="mvm"/>
|
2020-06-10 08:51:52 +00:00
|
|
|
<FontFamily x:Key="NFont">pack://application:,,,/Font/#FOT-RodinNTLG Pro B</FontFamily>
|
2020-03-01 13:12:17 +00:00
|
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
|
|
</Application>
|