App.xaml 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <!--
  2. //*********************************************************
  3. //
  4. // Copyright (c) Microsoft. All rights reserved.
  5. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
  6. // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
  7. // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
  8. // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
  9. //
  10. //*********************************************************
  11. -->
  12. <Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  13. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  14. x:Class="SDKSample.App"
  15. RequestedTheme="Light">
  16. <Application.Resources>
  17. <ResourceDictionary>
  18. <ResourceDictionary.MergedDictionaries>
  19. <!--
  20. Styles that define common aspects of the platform look and feel
  21. Required by Visual Studio project and item templates
  22. -->
  23. <ResourceDictionary Source="Common/StandardStyles.xaml"/>
  24. <ResourceDictionary Source="Sample-Utils/SampleTemplateStyles.xaml"/>
  25. </ResourceDictionary.MergedDictionaries>
  26. </ResourceDictionary>
  27. </Application.Resources>
  28. </Application>