forked from microsoft/Windows-universal-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathScenario2_Multiple.xaml.h
More file actions
33 lines (28 loc) · 987 Bytes
/
Scenario2_Multiple.xaml.h
File metadata and controls
33 lines (28 loc) · 987 Bytes
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
31
32
33
//*********************************************************
//
// 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.
//
//*********************************************************
#pragma once
#include "Scenario2_Multiple.g.h"
#include "MainPage.xaml.h"
namespace SDKTemplate
{
[Windows::Foundation::Metadata::WebHostHidden]
public ref class Scenario2_Multiple sealed
{
public:
Scenario2_Multiple();
void PickContactsEmail();
void PickContactsPhone();
private:
MainPage^ rootPage = MainPage::Current;
void ClearOutputs();
void ReportContactResults(Windows::Foundation::Collections::IVector<Windows::ApplicationModel::Contacts::Contact^>^ contacts);
};
}