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

Represents a base class that inherits TimeSpanComponentBase and populates its ItemsSource collection using the Minimum, Maximum and Step properties.

Definition

Constructors

Initializes a new instance of the StepTimeSpanComponentBase class.

C#
protected StepTimeSpanComponentBase()

Fields

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

StepProperty

DependencyProperty

Identifies the Step dependency property.

C#
public static readonly DependencyProperty StepProperty

Properties

Gets or sets a decimal that represents the max value in the ItemsSource collection.

C#
public decimal Maximum { get; set; }

Gets or sets a decimal that represents the min value in the ItemsSource collection.

C#
public decimal Minimum { get; set; }

Gets or sets a decimal that represents the step used to increment each value to populate the ItemsSource collection.

C#
public decimal Step { get; set; }