Show / Hide Table of Contents

Class DragDeltaEventArgs

Provides data for the DragDelta event that occurs one or more times when a user drags a Thumb control with the mouse.

Inheritance
System.Object
System.EventArgs
RoutedEventArgs
DragDeltaEventArgs
Inherited Members
RoutedEventArgs.OriginalSource
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: System.Windows.Controls.Primitives
Assembly: OpenSilver.dll
Syntax
public class DragDeltaEventArgs : RoutedEventArgs

Constructors

| Improve this Doc View Source

DragDeltaEventArgs(Double, Double)

Initializes a new instance of the DragDeltaEventArgs class.

Declaration
public DragDeltaEventArgs(double horizontalChange, double verticalChange)
Parameters
Type Name Description
System.Double horizontalChange

The horizontal change in the Thumb position since the last DragDelta event.

System.Double verticalChange

The vertical change in the Thumb position since the last DragDelta event.

Properties

| Improve this Doc View Source

HorizontalChange

Gets the horizontal change in the Thumb position since the last DragDelta event.

Declaration
public double HorizontalChange { get; }
Property Value
Type Description
System.Double
| Improve this Doc View Source

VerticalChange

Gets the vertical change in the Thumb position since the last DragDelta event.

Declaration
public double VerticalChange { get; }
Property Value
Type Description
System.Double
  • Improve this Doc
  • View Source