-
Notifications
You must be signed in to change notification settings - Fork 44
/
App.xaml
22 lines (22 loc) · 1.36 KB
/
App.xaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<Application x:Class="SAM.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:system="clr-namespace:System;assembly=mscorlib"
xmlns:local="clr-namespace:SAM"
StartupUri="Views/AccountsWindow.xaml">
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Controls.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Fonts.xaml" />
<ResourceDictionary Source="pack://application:,,,/MahApps.Metro;component/Styles/Themes/Dark.Blue.xaml" />
</ResourceDictionary.MergedDictionaries>
<system:Double x:Key="MenuFontSize">12</system:Double>
<Thickness x:Key="MenuItemPadding">7,1,8,2</Thickness>
<Color x:Key="ControlForeground">WhiteSmoke</Color>
<SolidColorBrush x:Key="xctkForegoundBrush" Color="Black"/>
<SolidColorBrush x:Key="xctkColorPickerBackground" Color="White"/>
<SolidColorBrush x:Key="AccountGridActionHighlightColor" Color="Cyan"/>
</ResourceDictionary>
</Application.Resources>
</Application>