Class DragDeltaEventArgs
Provides data for the DragDelta event that occurs one or more times when a user drags a Thumb control with the mouse.
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: System.Windows.Controls.Primitives
Assembly: OpenSilver.dll
Syntax
public class DragDeltaEventArgs : RoutedEventArgs
Constructors
| Improve this Doc View SourceDragDeltaEventArgs(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 SourceHorizontalChange
Gets the horizontal change in the Thumb position since the last DragDelta event.
Declaration
public double HorizontalChange { get; }
Property Value
Type | Description |
---|---|
System.Double |
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 |