Blame view

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