Represents a base class that inherits TimeSpanComponentBase and populates its ItemsSource collection using the Minimum, Maximum and Step properties.
Definition
Namespace:Telerik.Windows.Controls
Assembly:Telerik.Windows.Controls.Input.dll
Syntax:
public abstract class StepTimeSpanComponentBase : TimeSpanComponentBase
Inheritance: objectTimeSpanComponentBaseStepTimeSpanComponentBase
Derived Classes:
Inherited Members
Constructors
Initializes a new instance of the StepTimeSpanComponentBase class.
protected StepTimeSpanComponentBase()
Fields
MaximumProperty
DependencyProperty
Identifies the Maximum dependency property.
public static readonly DependencyProperty MaximumProperty
MinimumProperty
DependencyProperty
Identifies the Minimum dependency property.
public static readonly DependencyProperty MinimumProperty
StepProperty
DependencyProperty
Identifies the Step dependency property.
public static readonly DependencyProperty StepProperty
Properties
Gets or sets a decimal that represents the max value in the ItemsSource collection.
public decimal Maximum { get; set; }
Gets or sets a decimal that represents the min value in the ItemsSource collection.
public decimal Minimum { get; set; }
Gets or sets a decimal that represents the step used to increment each value to populate the ItemsSource collection.
public decimal Step { get; set; }