annotate Messaging/Client/App.xaml @ 87:8bb84cc9ba3f

Clear out rubbish
author stevenhollidge <stevenhollidge@hotmail.com>
date Thu, 26 Apr 2012 13:23:35 +0100
parents 8d574f2d4174
children
rev   line source
26
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
1 <Application x:Class="Client.App"
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
2 xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
3 xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
30
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
4 StartupUri="UI\MainWindow.xaml">
26
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
5 <Application.Resources>
30
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
6 <ResourceDictionary>
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
7 <ResourceDictionary.MergedDictionaries>
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
8 <ResourceDictionary Source="/Elysium.Theme;component/Themes/Generic.xaml" />
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
9 </ResourceDictionary.MergedDictionaries>
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
10 <!-- Bug in .Net 4: http://connect.microsoft.com/VisualStudio/feedback/details/555322/global-wpf-styles-are-not-shown-when-using-2-levels-of-references -->
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
11 <Style TargetType="{x:Type Window}" />
8d574f2d4174 Cleaned up client
adminsh@apollo
parents: 26
diff changeset
12 </ResourceDictionary>
26
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
13 </Application.Resources>
045dac571339 Working on data binding to a user control
adminsh@apollo
parents:
diff changeset
14 </Application>