forked from microsoft/Windows-universal-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleConfiguration.cpp
25 lines (22 loc) · 958 Bytes
/
SampleConfiguration.cpp
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
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// 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.
//
//*********************************************************
#include "pch.h"
#include "MainPage.xaml.h"
#include "SampleConfiguration.h"
using namespace SDKTemplate;
Platform::Array<Scenario>^ MainPage::scenariosInner = ref new Platform::Array<Scenario>
{
{ "Using this sample app", "SDKTemplate.Scenario_SampleOverview" },
{ "Downloadable fonts overview", "SDKTemplate.Scenario_CloudFontOverview" },
{ "Document 1", "SDKTemplate.Scenario_Document1" },
{ "Document 2", "SDKTemplate.Scenario_Document2" },
{ "Document 3", "SDKTemplate.Scenario_Document3" }
};