comparison Chronosv2/source/DragAndDrop/DragDropProviderActions.cs @ 10:443821e55f06

Initial cleaned up add from Codeplex files
author stevenh7776 stevenhollidge@hotmail.com
date Tue, 21 Feb 2012 17:25:44 +0700
parents
children
comparison
equal deleted inserted replaced
9:904a9faadf8b 10:443821e55f06
1 using System;
2
3 namespace Chronos.Presentation.DragAndDrop
4 {
5 [Serializable]
6 public enum DragDropProviderActions
7 {
8 None = 0,
9 Data = 1,
10 Visual = 2,
11 Feedback = 4,
12 ContinueDrag = 8,
13 Clone = 16,
14 MultiFormatData = 32,
15 // 64, 128 left for decent operations
16 // unparent feels hacky
17 Unparent = 256,
18 }
19 }