App.xaml 944 B

1234567891011121314151617181920
  1. <Application
  2. x:Class="NfcNdefTagReader.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. <!--Application Resources-->
  8. <Application.Resources>
  9. <local:LocalizedStrings xmlns:local="clr-namespace:NfcNdefTagReader" x:Key="LocalizedStrings"/>
  10. </Application.Resources>
  11. <Application.ApplicationLifetimeObjects>
  12. <!--Required object that handles lifetime events for the application-->
  13. <shell:PhoneApplicationService
  14. Launching="Application_Launching" Closing="Application_Closing"
  15. Activated="Application_Activated" Deactivated="Application_Deactivated"/>
  16. </Application.ApplicationLifetimeObjects>
  17. </Application>