Show / Hide Table of Contents

Class DragDropEventArgs

Implements event arguments for drag and drop delegate

Inheritance
System.Object
System.EventArgs
DragDropEventArgs
Inherited Members
System.EventArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: EmptyKeys.UserInterface
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class DragDropEventArgs : EventArgs

Constructors

DragDropEventArgs(Object, MouseButton)

Initializes a new instance of the DragDropEventArgs class.

Declaration
public DragDropEventArgs(object data, MouseButton button)
Parameters
Type Name Description
System.Object data

The data.

MouseButton button

Properties

Cancel

Gets or sets a value indicating whether this DragDropEventArgs is cancel.

Declaration
public bool Cancel { get; set; }
Property Value
Type Description
System.Boolean

true if cancel; otherwise, false.

Data

Gets the data.

Declaration
public object Data { get; }
Property Value
Type Description
System.Object

The data.

MouseButton

Gets the mouse button

Declaration
public MouseButton MouseButton { get; }
Property Value
Type Description
MouseButton
Back to top Generated by DocFX