Class
StepTimeSpanComponentBase

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:

cs-api-definition
[SuppressMessage("Design", "CA1001:Types that own disposable fields should be disposable", Justification = "<Pending>")]
public abstract class StepTimeSpanComponentBase : TimeSpanComponentBase

Inheritance: objectTimeSpanComponentBaseStepTimeSpanComponentBase

Derived Classes: DayTimeSpanComponentHourTimeSpanComponentMillisecondTimeSpanComponentMinuteTimeSpanComponentSecondTimeSpanComponent

Inherited Members TimeSpanComponentBase.ItemsSourcePropertyTimeSpanComponentBase.HeaderPropertyTimeSpanComponentBase.SelectedItemPropertyTimeSpanComponentBase.GetTicksFromItem(object)TimeSpanComponentBase.GetSelectedIndexFromTimeSpan(long, long)TimeSpanComponentBase.ItemsSourceTimeSpanComponentBase.HeaderTimeSpanComponentBase.SelectedItemTimeSpanComponentBase.SelectedItemChanged

Constructors

StepTimeSpanComponentBase()

Initializes a new instance of the StepTimeSpanComponentBase class.

Declaration

cs-api-definition
protected StepTimeSpanComponentBase()

Fields

MaximumProperty

Identifies the Maximum dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MaximumProperty

Field Value

DependencyProperty

MinimumProperty

Identifies the Minimum dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty MinimumProperty

Field Value

DependencyProperty

StepProperty

Identifies the Step dependency property.

Declaration

cs-api-definition
public static readonly DependencyProperty StepProperty

Field Value

DependencyProperty

Properties

Maximum

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

Declaration

cs-api-definition
public decimal Maximum { get; set; }

Property Value

decimal

Minimum

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

Declaration

cs-api-definition
public decimal Minimum { get; set; }

Property Value

decimal

Step

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

Declaration

cs-api-definition
public decimal Step { get; set; }

Property Value

decimal