DragDropEffects.cs 619 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // System.Windows.Forms.DragDropEffects.cs
  3. //
  4. // Author:
  5. // Jaak Simm ([email protected])
  6. // Dennis Hayes ([email protected])
  7. // (C) 2002 Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Windows.Forms {
  11. /// <summary>
  12. /// Specifies the effects of a drag-and-drop operation.
  13. /// This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
  14. /// </summary>
  15. [Flags]
  16. //[Serializable]
  17. public enum DragDropEffects {
  18. None = 0,
  19. Copy = 1,
  20. Move = 2,
  21. Link = 4,
  22. Scroll = -2147483648,
  23. All = -2147483645,
  24. }
  25. }