New to Telerik UI for WPFStart a free 30-day trial

Represents a tick bar control that allows users to select a value from a specified range by visually indicating the minimum and maximum values, as well as the directional properties of the control. The RadTickBar class extends the and includes properties such as Minimum and Maximum to define the range of values, and IsDirectionReversed to control the direction of the value selection. This class is useful in scenarios where a visual representation of a range of values is needed, such as in slider controls.

Definition

Namespace:Telerik.Windows.Controls

Assembly:Telerik.Windows.Controls.dll

Syntax:

C#
public class RadTickBar : ItemsControl

Inheritance: objectRadTickBar

Constructors

Initializes a new instance of the RadTickBar class.

C#
public RadTickBar()

Fields

IsDirectionReversedProperty

DependencyProperty

Identifies the IsDirectionReversed dependency property.

C#
public static readonly DependencyProperty IsDirectionReversedProperty

MaximumProperty

DependencyProperty

Identifies the Maximum dependency property.

C#
public static readonly DependencyProperty MaximumProperty

MinimumProperty

DependencyProperty

Identifies the Minimum dependency property.

C#
public static readonly DependencyProperty MinimumProperty

Properties

C#
public bool IsDirectionReversed { get; set; }

Bound to .

C#
public double Maximum { get; set; }

Bound to .

C#
public double Minimum { get; set; }