26
|
1 <Application x:Class="Server.App"
|
|
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
4 xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
5 xmlns:local="clr-namespace:Server"
|
|
6 xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
7 StartupUri="UI\MainWindow.xaml"
|
|
8 mc:Ignorable="d">
|
|
9 <Application.Resources>
|
|
10 <ResourceDictionary>
|
|
11 <ResourceDictionary.MergedDictionaries>
|
|
12 <ResourceDictionary Source="/Elysium.Theme;component/Themes/Generic.xaml" />
|
35
|
13 <ResourceDictionary Source="/Common;component/Themes/MetroColours.xaml" />
|
|
14 <ResourceDictionary Source="/Common;component/Themes/Generic.xaml" />
|
26
|
15 </ResourceDictionary.MergedDictionaries>
|
|
16 <!-- Bug in .Net 4: http://connect.microsoft.com/VisualStudio/feedback/details/555322/global-wpf-styles-are-not-shown-when-using-2-levels-of-references -->
|
|
17 <Style TargetType="{x:Type Window}" />
|
|
18 <local:Locator x:Key="Locator" d:IsDataSource="True" />
|
|
19
|
35
|
20 <Image x:Key="Mail" Source="pack://application:,,,/Common;component/Icons/mail.png" />
|
26
|
21
|
|
22 </ResourceDictionary>
|
|
23 </Application.Resources>
|
|
24 </Application> |