41 lines
2.3 KiB
XML
41 lines
2.3 KiB
XML
<prism:PrismApplication
|
|
x:Class="WolfOfWallStreet.App"
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
xmlns:local="clr-namespace:WolfOfWallStreet"
|
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
|
xmlns:prism="http://prismlibrary.com/">
|
|
<Application.Resources>
|
|
<ResourceDictionary>
|
|
|
|
<FontFamily x:Key="IranSans">../Resources/Fonts/IranSansMedium.ttf #IRANSans Medium</FontFamily>
|
|
<FontFamily x:Key="Shabnam">../Resources/Fonts/Shabnam.ttf #Shabnam</FontFamily>
|
|
<FontFamily x:Key="ShabnamBold">../Resources/Fonts/Shabnam-Bold.ttf #Shabnam Bold</FontFamily>
|
|
<FontFamily x:Key="MaterialFontIcon">../Resources/Fonts/materialdesignicons-webfont.ttf #Material Design Icons</FontFamily>
|
|
|
|
<Style TargetType="materialDesign:Card">
|
|
<Setter Property="materialDesign:ShadowAssist.ShadowDepth" Value="Depth0" />
|
|
<Setter Property="Background" Value="{DynamicResource RegionBrush}" />
|
|
</Style>
|
|
|
|
<ResourceDictionary x:Key="Material">
|
|
|
|
<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.DeepPurple.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
|
|
|
|
</ResourceDictionary>
|
|
|
|
<ResourceDictionary.MergedDictionaries>
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/SkinDefault.xaml" />
|
|
<ResourceDictionary Source="pack://application:,,,/HandyControl;component/Themes/Theme.xaml" />
|
|
</ResourceDictionary.MergedDictionaries>
|
|
</ResourceDictionary>
|
|
|
|
</Application.Resources>
|
|
</prism:PrismApplication>
|