Class DragStartedEventArgs
Arguments for Drag Start 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 DragStartedEventArgs : RoutedEventArgs
Constructors
DragStartedEventArgs(Single, Single)
Initializes a new instance of the DragStartedEventArgs class.
Declaration
public DragStartedEventArgs(float horizontalOffset, float verticalOffset)
Parameters
Type | Name | Description |
---|---|---|
System.Single | horizontalOffset | The horizontal offset. |
System.Single | verticalOffset | The vertical offset. |
Properties
HorizontalOffset
Gets the horizontal offset.
Declaration
public float HorizontalOffset { get; }
Property Value
Type | Description |
---|---|
System.Single | The horizontal offset. |
VerticalOffset
Gets the vertical offset.
Declaration
public float VerticalOffset { get; }
Property Value
Type | Description |
---|---|
System.Single | The vertical offset. |
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. |