A that stacks its children according to the IPeriodSpan interval they are describing.
Definition
Namespace:Telerik.Windows.Controls.TimeBar
Assembly:Telerik.Windows.Controls.DataVisualization.dll
Syntax:
public class VirtualizingTimeBarPanel : VirtualizingPanel
Inheritance: objectVirtualizingTimeBarPanel
Derived Classes:
Constructors
Initializes a new instance of the VirtualizingTimeBarPanel class.
public VirtualizingTimeBarPanel()
Fields
SliderProperty
DependencyProperty
Identifies the Slider dependency property.
public static readonly DependencyProperty SliderProperty
Properties
Gets or sets the end of the period that the panel visualizes. The PeriodEnd value itself is excluded from the period.
public DateTime PeriodEnd { get; set; }
The end of the period that the control visualizes.
The PeriodStart value must be less than or equal to the value of PeriodEnd.
Gets or sets the start of the period that the control visualizes.
public DateTime PeriodStart { get; set; }
The start of the period that the control visualizes.
The PeriodStart value must be less than or equal to the value of PeriodEnd.
Gets or sets the RadSlider used to control the zooming and scrolling in this VirtualizingTimeBarPanel.
public RadSlider Slider { get; set; }
The RadSlider used to control the zooming and scrolling in this VirtualizingTimeBarPanel.
Gets or sets the end of the visible period.
public DateTime VisiblePeriodEnd { get; set; }
The end of the visible period.
The VisiblePeriodStart value must be less than or equal to the value of VisiblePeriodEnd. Additionally, both VisiblePeriodStart and VisiblePeriodEnd must be within the period, defined by the PeriodStart and PeriodEnd properties.
Gets or sets the start of the visible period.
public DateTime VisiblePeriodStart { get; set; }
The start of the visible period.
The VisiblePeriodStart value must be less than or equal to the value of VisiblePeriodEnd. Additionally, both VisiblePeriodStart and VisiblePeriodEnd must be within the period, defined by the PeriodStart and PeriodEnd properties.
Methods
When overridden in a derived class, positions child elements and determines a size for a FrameworkElement derived class.
protected override Size ArrangeOverride(Size finalSize)
The final area within the parent that this element should use to arrange itself and its children.
Returns:Size
The actual size used.
When overridden in a derived class, measures the size in layout required for child elements and determines a size for the FrameworkElement-derived class.
protected override Size MeasureOverride(Size availableSize)
The available size that this element can give to child elements. Infinity can be specified as a value to indicate that the element will size to whatever content is available.
Returns:Size
The size that this element determines it needs during layout, based on its calculations of child element sizes.
Called when the InternalChildren collection changes.
protected virtual void OnChildrenChanged()