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

Extends the FastItemsControl by adding UI virtualization for items.

Definition

Constructors

C#
protected VirtualizingFastItemsControl()

Properties

Gets or sets a value indicating whether to use UI virtualization.

C#
public bool IsVirtualizing { get; set; }
Property Value:

true if this instance of IVirtualizingFastItemsControl is virtualizing its child collection; otherwise, false.

Gets all currently visible items.

C#
public IEnumerable VisibleContainers { get; }
Property Value:

The visible items.

Methods

Called to do the virtualization. Also, calls Arrange override to its base, System.Windows.Controls.Control.

C#
protected override Size ArrangeOverride(Size finalSize)
Parameters:finalSizeSizeReturns:

Size

Occurs when virtualization is enabled and the visible range has changed.

C#
protected virtual void OnVisibleItemsChanged()