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