App.xaml 847 B

12345678910111213141516171819
  1. <Application
  2. x:Class="SolitaireHTML5.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. </Application.Resources>
  10. <Application.ApplicationLifetimeObjects>
  11. <!--Required object that handles lifetime events for the application-->
  12. <shell:PhoneApplicationService
  13. Launching="Application_Launching" Closing="Application_Closing"
  14. Activated="Application_Activated" Deactivated="Application_Deactivated"/>
  15. </Application.ApplicationLifetimeObjects>
  16. </Application>