-
Notifications
You must be signed in to change notification settings - Fork 7.8k
Expand file tree
/
Copy pathScenario4_MoveBetweenListView.xaml.h
More file actions
38 lines (33 loc) · 1.38 KB
/
Scenario4_MoveBetweenListView.xaml.h
File metadata and controls
38 lines (33 loc) · 1.38 KB
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
34
35
36
37
38
//*********************************************************
//
// 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 "Scenario4_MoveBetweenListView.g.h"
#include "MainPage.xaml.h"
namespace SDKTemplate
{
/// <summary>
/// An empty page that can be used on its own or navigated to within a Frame.
/// </summary>
[Windows::Foundation::Metadata::WebHostHidden]
public ref class Scenario4_MoveBetweenListView sealed
{
public:
Scenario4_MoveBetweenListView();
private:
MainPage^ rootPage;
Platform::Collections::Vector<Platform::String^>^ GetSampleData();
Platform::Collections::Vector<Platform::String^>^ _source;
Platform::Collections::Vector<Platform::String^>^ _target;
void ListView_DragItemsStarting(Platform::Object^ sender, Windows::UI::Xaml::Controls::DragItemsStartingEventArgs^ e);
void ListView_DragOver(Platform::Object^ sender, Windows::UI::Xaml::DragEventArgs^ e);
void ListView_Drop(Platform::Object^ sender, Windows::UI::Xaml::DragEventArgs^ e);
};
}