Show / Hide Table of Contents

Class DragDeltaEventArgs

Arguments for Drag moving event

Inheritance
System.Object
RoutedEventArgs
DragDeltaEventArgs
Inherited Members
RoutedEventArgs.RoutedEvent
RoutedEventArgs.Handled
RoutedEventArgs.Source
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 DragDeltaEventArgs : RoutedEventArgs

Constructors

DragDeltaEventArgs(Single, Single)

Initializes a new instance of the DragDeltaEventArgs class.

Declaration
public DragDeltaEventArgs(float horizontalChange, float verticalChange)
Parameters
Type Name Description
System.Single horizontalChange

The horizontal change.

System.Single verticalChange

The vertical change.

Properties

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.

Overrides
RoutedEventArgs.InvokeEventHandler(Delegate, Object)
Back to top Generated by DocFX