App.xaml 980 B

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