App.xaml 1.3 KB

1234567891011121314151617181920212223242526272829
  1. <!--
  2. Copyright © 2011-2012 Nokia Corporation. All rights reserved.
  3. Nokia and Nokia Connecting People are registered trademarks of Nokia Corporation.
  4. Other product and company names mentioned herein may be trademarks
  5. or trade names of their respective owners.
  6. See LICENSE.TXT for license information.
  7. -->
  8. <Application
  9. x:Class="RSSReader.App"
  10. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  11. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  12. xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
  13. xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"
  14. xmlns:local="clr-namespace:RSSReader"
  15. xmlns:model="clr-namespace:RSSReader.Model">
  16. <!--Application Resources-->
  17. <Application.Resources>
  18. <model:RSSCache x:Key="RSSPagesDataSource" />
  19. </Application.Resources>
  20. <Application.ApplicationLifetimeObjects>
  21. <!--Required object that handles lifetime events for the application-->
  22. <shell:PhoneApplicationService
  23. Launching="Application_Launching" Closing="Application_Closing"
  24. Activated="Application_Activated" Deactivated="Application_Deactivated"/>
  25. </Application.ApplicationLifetimeObjects>
  26. </Application>