Class RangeSliderThumb
Represents a control with two Thumbs that can be dragged by the user.
Inherited Members
Namespace: Telerik.Windows.Controls
Assembly: Telerik.Windows.Controls.dll
Syntax
public class RangeSliderThumb : SliderThumbBase
Constructors
RangeSliderThumb()
Declaration
public RangeSliderThumb()
Fields
AlternateThumbStyleProperty
Identifies the AlternateThumbStyle dependency property.
Declaration
public static readonly DependencyProperty AlternateThumbStyleProperty
Field Value
System.Windows.DependencyProperty
|
MaximumRangeSpanProperty
Identifies the MaximumRangeSpan dependency property.
Declaration
public static readonly DependencyProperty MaximumRangeSpanProperty
Field Value
System.Windows.DependencyProperty
|
MiddleThumbStyleProperty
Identifies the MiddleThumbStyleProperty dependency property.
Declaration
public static readonly DependencyProperty MiddleThumbStyleProperty
Field Value
System.Windows.DependencyProperty
|
MinimumRangeSpanProperty
Identifies the MinimumRangeSpan dependency property.
Declaration
public static readonly DependencyProperty MinimumRangeSpanProperty
Field Value
System.Windows.DependencyProperty
|
RangeEndProperty
Identifies the RangeEnd dependency property.
Declaration
public static readonly DependencyProperty RangeEndProperty
Field Value
System.Windows.DependencyProperty
|
RangeStartProperty
Identifies the RangeStart dependency property.
Declaration
public static readonly DependencyProperty RangeStartProperty
Field Value
System.Windows.DependencyProperty
|
SelectedRangeChangedEvent
Identifies the RangeChanged routed event.
Declaration
public static readonly RoutedEvent SelectedRangeChangedEvent
Field Value
System.Windows.RoutedEvent
|
SelectedRangeProperty
Identifies the RangeProperty dependency property.
Declaration
public static readonly DependencyProperty SelectedRangeProperty
Field Value
System.Windows.DependencyProperty
|
Properties
AlternateThumbStyle
Gets or sets the style for the right Thumb of the RangeSliderThumb element.
Declaration
public Style AlternateThumbStyle { get; set; }
Property Value
System.Windows.Style
|
MaximumRangeSpan
Gets or sets the maximum value distance between SelectionStart and SelectionEnd.
Declaration
public double MaximumRangeSpan { get; set; }
Property Value
System.Double
|
MiddleThumbStyle
Gets or sets the style for the middle Thumb of the RangeSliderThumb element.
Declaration
public Style MiddleThumbStyle { get; set; }
Property Value
System.Windows.Style
|
MinimumRangeSpan
Gets or sets the minimum value distance between SelectionStart and SelectionEnd.
Declaration
public double MinimumRangeSpan { get; set; }
Property Value
System.Double
|
RangeEnd
Gets or sets the largest value of a specified range.
Declaration
public double RangeEnd { get; set; }
Property Value
System.Double
|
RangeStart
Gets or sets the smallest value of a specified range.
Declaration
public double RangeStart { get; set; }
Property Value
System.Double
|
SelectedRange
Gets or sets the range - Start and End.
Declaration
public SelectionRange<double> SelectedRange { get; set; }
Property Value
SelectionRange<System.Double>
The selection. |
Methods
OnApplyTemplate()
When overridden in a derived class, is invoked whenever application code or internal processes (such as a rebuilding layout pass) call System.Windows.Controls.Control.ApplyTemplate.
Declaration
public override void OnApplyTemplate()
Overrides
OnCreateAutomationPeer()
Creates new RangeSliderThumbAutomationPeer when needed.
Declaration
protected override AutomationPeer OnCreateAutomationPeer()
Returns
System.Windows.Automation.Peers.AutomationPeer
|
OnMaximumRangeSpanChanged(Double, Double)
Called when MaximumRangeSpan is changed.
Declaration
protected virtual void OnMaximumRangeSpanChanged(double oldValue, double newValue)
Parameters
System.Double
oldValue
The old value. |
System.Double
newValue
The new value. |
OnMinimumRangeSpanChanged(Double, Double)
Called when MinimumRangeSpan is changed.
Declaration
protected virtual void OnMinimumRangeSpanChanged(double oldValue, double newValue)
Parameters
System.Double
oldValue
The old value. |
System.Double
newValue
The new value. |
OnSelectedRangeChanged()
Called when SelectionRange event occurs.
Declaration
protected virtual void OnSelectedRangeChanged()
Events
SelectedRangeChanged
Occurs when the SelectedRange property has changed.
Declaration
public event RadRoutedEventHandler SelectedRangeChanged
Event Type
RadRoutedEventHandler
|