summaryrefslogtreecommitdiff
path: root/Noddybox.WindowsPhone.Test/App.xaml
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2012-06-24 21:51:21 +0000
committerIan C <ianc@noddybox.co.uk>2012-06-24 21:51:21 +0000
commit0526498057c198ac8d54836a3ac8fea20157b35b (patch)
tree4b15228e8336872c64eafbdc676e47366705b699 /Noddybox.WindowsPhone.Test/App.xaml
parent8aa49fe75f38b722779a79f2b190bc64bac44ce5 (diff)
Added initial projects and solution
Diffstat (limited to 'Noddybox.WindowsPhone.Test/App.xaml')
-rw-r--r--Noddybox.WindowsPhone.Test/App.xaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/Noddybox.WindowsPhone.Test/App.xaml b/Noddybox.WindowsPhone.Test/App.xaml
new file mode 100644
index 0000000..25e8f7c
--- /dev/null
+++ b/Noddybox.WindowsPhone.Test/App.xaml
@@ -0,0 +1,19 @@
+<Application
+ x:Class="Noddybox.WindowsPhone.Test.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">
+
+ <!--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