Slider.OnThumbDragDelta(DragDeltaEventArgs) Method

Definition

Provides class handling for the DragDelta event that occurs when the user drags the Thumb of the Slider.

protected:
 virtual void OnThumbDragDelta(System::Windows::Controls::Primitives::DragDeltaEventArgs ^ e);
protected virtual void OnThumbDragDelta (System.Windows.Controls.Primitives.DragDeltaEventArgs e);
abstract member OnThumbDragDelta : System.Windows.Controls.Primitives.DragDeltaEventArgs -> unit
override this.OnThumbDragDelta : System.Windows.Controls.Primitives.DragDeltaEventArgs -> unit
Protected Overridable Sub OnThumbDragDelta (e As DragDeltaEventArgs)

Parameters

e
DragDeltaEventArgs

The event data.

Remarks

This implementation does not change the handled state (the Handled property) of the DragDelta event data.

Notes to Inheritors

This method can be overridden to customize the way a Slider processes Thumb movements. If you override OnThumbDragDelta(DragDeltaEventArgs), always call the base implementation in your OnThumbDragDelta(DragDeltaEventArgs) implementation. Failure to call the base implementation prevents base classes from handling the event with a class handler, which might change the run-time behavior of the final class. You can call the base implementation either before or after your special handling, depending on your requirements.

Applies to