Events Overview
This topic covers the specific events exposed by the RadSlider control.
The Events is part of Telerik UI for WPF, a
professional grade UI library with 150+ components for building modern and feature-rich applications. To try it out sign up for a free 30-day trial.
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.