App.xaml 1.2 KB

1234567891011121314151617181920212223242526
  1. <Application
  2. x:Class="VocabManager.App"
  3. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  4. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  5. xmlns:lcalVoice ="clr-namespace:VocabManager.Voice"
  6. xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"
  7. xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">
  8. <!--Application Resources-->
  9. <Application.Resources>
  10. <ResourceDictionary>
  11. <ResourceDictionary.MergedDictionaries>
  12. <ResourceDictionary Source="/VocabManager;component/Resources/Theme/Default.xaml" />
  13. </ResourceDictionary.MergedDictionaries>
  14. </ResourceDictionary>
  15. </Application.Resources>
  16. <Application.ApplicationLifetimeObjects>
  17. <!--Required object that handles lifetime events for the application-->
  18. <shell:PhoneApplicationService
  19. Launching="Application_Launching" Closing="Application_Closing"
  20. Activated="Application_Activated" Deactivated="Application_Deactivated"/>
  21. <lcalVoice:XNAFrameworkDispatcherService />
  22. </Application.ApplicationLifetimeObjects>
  23. </Application>