summaryrefslogtreecommitdiff
path: root/Juick/App.xaml
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2012-02-11 22:22:50 +0400
committerGravatar Vitaly Takmazov2012-02-11 22:22:50 +0400
commit49eb44f852ab21e72c17bbc436ffa79525a1aba3 (patch)
tree249cd1d69dc8078104dc2bc35cfcbbce98cd85f4 /Juick/App.xaml
v 0.999 :)
Diffstat (limited to 'Juick/App.xaml')
-rw-r--r--Juick/App.xaml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Juick/App.xaml b/Juick/App.xaml
new file mode 100644
index 0000000..0c60cc0
--- /dev/null
+++ b/Juick/App.xaml
@@ -0,0 +1,20 @@
+<Application
+ x:Class="Juick.App"
+ xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
+ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
+ xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
+ xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
+ xmlns:sys="clr-namespace:System;assembly=mscorlib">
+
+ <!--Application Resources-->
+ <Application.Resources>
+ </Application.Resources>
+
+ <Application.ApplicationLifetimeObjects>
+ <!--Required object that handles lifetime events for the application-->
+ <shell:PhoneApplicationService
+ Launching="Application_Launching" Closing="Application_Closing"
+ Activated="Application_Activated" Deactivated="Application_Deactivated"/>
+ </Application.ApplicationLifetimeObjects>
+
+</Application> \ No newline at end of file