Class
StepTimeSpanComponentBase

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

Definition

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