Created
December 4, 2014 22:22
-
-
Save JonDouglas/061d9082a6727c53be6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Application | |
x:Class="UpgradeTest.WinPhone.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> | |
<local:LocalizedStrings xmlns:local="clr-namespace:UpgradeTest.WinPhone" x:Key="LocalizedStrings"/> | |
<MediaElement x:Key="GlobalMedia"></MediaElement> | |
</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> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment