PageRenderTime 40ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/V4/PrismLibrary/Phone/Prism.Tests/App.xaml

#
XAML | 19 lines | 14 code | 3 blank | 2 comment | 0 complexity | d6bf72e53fde915f484f59153cb95d6a MD5 | raw file
  1. <Application
  2. x:Class="Microsoft.Practices.Prism.Tests.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>