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

Provides implementation of IPeriodSpan interface for a Control class.

Definition

Namespace:Telerik.Windows.Controls.TimeBar

Assembly:Telerik.Windows.Controls.DataVisualization.dll

Syntax:

C#
public abstract class PeriodSpanControlAdapter : Control, IPeriodSpan

Inheritance: objectPeriodSpanControlAdapter

Derived Classes: SelectionIndicatorSelectionThumbSelectionThumbPreviewShadeControl

Implements: IPeriodSpan

Constructors

C#
protected PeriodSpanControlAdapter()

Fields

EndDateProperty

DependencyProperty

Identifies the EndDate dependency property.

C#
public static readonly DependencyProperty EndDateProperty

StartDateProperty

DependencyProperty

Identifies the StartDate dependency property.

C#
public static readonly DependencyProperty StartDateProperty

Properties

Gets or sets the end date of the PeriodSpanControlAdapter.

C#
public DateTime EndDate { get; set; }
Property Value:

The end date of the PeriodSpanControlAdapter.

Implements: IPeriodSpan.EndDate

Gets the time interval of the PeriodSpanControlAdapter.

C#
[Browsable(false)]
public TimeSpan Interval { get; }
Property Value:

The time interval of the PeriodSpanControlAdapter.

Implements: IPeriodSpan.Interval

Gets or sets the start date of the PeriodSpanControlAdapter.

C#
public DateTime StartDate { get; set; }
Property Value:

The start date of the PeriodSpanControlAdapter.

Implements: IPeriodSpan.StartDate

Methods

Called when the Interval of the PeriodSpanControlAdapter changes.

C#
protected virtual void OnIntervalChanged()