RangeBaseValueChangedEventArgs Class
Definition
Provides data specific to a Avalonia.Controls.Primitives.RangeBase.ValueChanged event.
public class RangeBaseValueChangedEventArgs
Constructors
| Name | Description |
|---|---|
| RangeBaseValueChangedEventArgs (2 overloads) | Initializes a new instance of the Avalonia.Controls.Primitives.RangeBaseValueChangedEventArgs class. |
RangeBaseValueChangedEventArgs overloads
RangeBaseValueChangedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.Primitives.RangeBaseValueChangedEventArgs class.
public RangeBaseValueChangedEventArgs(double oldValue, double newValue, Avalonia.Interactivity.RoutedEvent routedEvent)
Parameters
oldValue double
The old value of the range value property.
newValue double
The new value of the range value property.
routedEvent Avalonia.Interactivity.RoutedEvent
The routed event associated with these event args.
RangeBaseValueChangedEventArgs Constructor
Initializes a new instance of the Avalonia.Controls.Primitives.RangeBaseValueChangedEventArgs class.
public RangeBaseValueChangedEventArgs(double oldValue, double newValue, Avalonia.Interactivity.RoutedEvent routedEvent, object source)
Parameters
oldValue double
The old value of the range value property.
newValue double
The new value of the range value property.
routedEvent Avalonia.Interactivity.RoutedEvent
The routed event associated with these event args.
source object
The source object that raised the routed event.
Properties
| Name | Description |
|---|---|
| NewValue | Gets the new value of the range value property. |
| OldValue | Gets the old value of the range value property. |
| Handled | Gets or sets a value indicating whether the routed event has already been handled. Inherited from RoutedEventArgs. |
| Route | Gets or sets the routing strategy (direct, bubbling, or tunneling) of the routed event. Inherited from RoutedEventArgs. |
| RoutedEvent | Gets or sets the routed event associated with these event args. Inherited from RoutedEventArgs. |
| Source | Gets or sets the source object that raised the routed event. Inherited from RoutedEventArgs. |
NewValue Property
Gets the new value of the range value property.
public double NewValue { get; set; }
OldValue Property
Gets the old value of the range value property.
public double OldValue { get; set; }