Events Overview

This topic covers the specific events exposed by the RadSlider control.

Drag Events

  • DragStarted - occurs when a user starts dragging a Thumb control with the mouse. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RadDragStartedEventArgs object.

  • DragDelta - occurs one or multiple times while a user drags a Thumb control with the mouse. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RadDragDeltaEventArgs object.

  • DragCompleted - occurs when a user completes a drag operation of a Thumb control with the mouse. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RadDragCompletedEventArgs object.

Selection Events

  • SelectionStartChanged - occurs when the value of the RadSlider.SelectionStart property is changed. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RoutedPropertyChangedEventArgs object.

  • SelectionEndChanged - occurs when the value of the RadSlider.SelectionEnd property is changed. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RoutedPropertyChangedEventArgs object.

  • SelectionChanged - occurs when the value of the RadSlider.Selection property is changed. The event handler receives two arguments:

  • The sender argument contains the RadSlider. This argument is of type object, but can be cast to the RadSlider type.

  • A RadRoutedEventArgs object.

See Also

In this article