Class DragCompletedEventArgs
Arguments for Drag Completed event
Inherited Members
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.Controls.Primitives
Assembly: EmptyKeys.UserInterface.dll
Syntax
public class DragCompletedEventArgs : RoutedEventArgs
Constructors
DragCompletedEventArgs(Single, Single, Boolean)
Initializes a new instance of the DragCompletedEventArgs class.
Declaration
public DragCompletedEventArgs(float horizontalChange, float verticalChange, bool canceled)
Parameters
Type | Name | Description |
---|---|---|
System.Single | horizontalChange | The horizontal change. |
System.Single | verticalChange | The vertical change. |
System.Boolean | canceled | if set to |
Properties
Canceled
Gets a value indicating whether this DragCompletedEventArgs is canceled.
Declaration
public bool Canceled { get; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
HorizontalChange
Gets the horizontal change.
Declaration
public float HorizontalChange { get; }
Property Value
Type | Description |
---|---|
System.Single | The horizontal change. |
VerticalChange
Gets the vertical change.
Declaration
public float VerticalChange { get; }
Property Value
Type | Description |
---|---|
System.Single | The vertical change. |
Methods
InvokeEventHandler(Delegate, Object)
Invokes the event handler.
Declaration
protected override void InvokeEventHandler(Delegate handler, object target)
Parameters
Type | Name | Description |
---|---|---|
System.Delegate | handler | The handler. |
System.Object | target | The target. |