This repository has been archived by the owner on Dec 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
App.xaml
41 lines (37 loc) · 1.83 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<Application
x:Class="Cloudsdale.App"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
xmlns:Controls="clr-namespace:Cloudsdale.Controls"
xmlns:Managers="clr-namespace:Cloudsdale.Managers">
<!--Application Resources-->
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="XamlResources.xaml" />
</ResourceDictionary.MergedDictionaries>
<Managers:BoolToVis x:Key="BTV" />
<Controls:StatusColorConverter x:Key="SCC" />
<Managers:ArrayHasAnyVis x:Key="AHAV" />
<Managers:PromoOrDemo x:Key="POD" />
<Managers:JUri x:Key="JURI" />
<Managers:StringTrim x:Key="Trim" />
<Managers:StringExistsBVis x:Key="SEBV" />
<Style TargetType="Controls:LinkDetectingTextBlock" x:Key="ChatStyle">
<Setter Property="FontFamily" Value="Verdana" />
<Setter Property="FontSize" Value="10" />
</Style>
<Style TargetType="RichTextBox" x:Key="RichChatStyle">
<Setter Property="FontFamily" Value="Verdana" />
<Setter Property="FontSize" Value="10" />
</Style>
</ResourceDictionary>
</Application.Resources>
<Application.ApplicationLifetimeObjects>
<!--Required object that handles lifetime events for the application-->
<shell:PhoneApplicationService
Launching="ApplicationLaunching" Closing="ApplicationClosing"
Activated="ApplicationActivated" Deactivated="ApplicationDeactivated"/>
</Application.ApplicationLifetimeObjects>
</Application>