Slider.OnThumbDragDelta(DragDeltaEventArgs) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
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.