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
13<Application xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
14    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
15    x:Class="SDKSample.App"
16    RequestedTheme="Light">
17    <Application.Resources>
18
19        <ResourceDictionary>
20            <ResourceDictionary.MergedDictionaries>
21                <!--
22                    Styles that define common aspects of the platform look and feel
23                    Required by Visual Studio project and item templates
24                 -->
25                <ResourceDictionary Source="Common/StandardStyles.xaml"/>
26                <ResourceDictionary Source="Sample-Utils/SampleTemplateStyles.xaml"/>
27            </ResourceDictionary.MergedDictionaries>
28        </ResourceDictionary>
29    </Application.Resources>
30</Application>
31