Slider.OnThumbDragCompleted(DragCompletedEventArgs) Method

Definition

Provides class handling for the DragCompleted event that occurs when the user stops dragging the Thumb of the Slider.

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

Parameters

e
DragCompletedEventArgs

The event data.

Remarks

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

Notes to Inheritors

This method can be overridden to customize the way a Slider processes Thumb movements. If you override OnThumbDragCompleted(DragCompletedEventArgs), always call the base implementation in your OnThumbDragCompleted(DragCompletedEventArgs) 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