• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<Application
2    x:Class="CodecUTApp.App"
3    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
5    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
6    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
7
8    <!--Application Resources-->
9    <Application.Resources>
10        <local:LocalizedStrings xmlns:local="clr-namespace:CodecUTApp" x:Key="LocalizedStrings"/>
11    </Application.Resources>
12
13    <Application.ApplicationLifetimeObjects>
14        <!--Required object that handles lifetime events for the application-->
15        <shell:PhoneApplicationService
16            Launching="Application_Launching" Closing="Application_Closing"
17            Activated="Application_Activated" Deactivated="Application_Deactivated"/>
18    </Application.ApplicationLifetimeObjects>
19
20</Application>