HypernovaDesktop Components · docs
Binarymission
WPFVirtualizing Wrap Panel › AboutToRenderChildItemsEventArgs

AboutToRenderChildItemsEventArgs

class.NET 6 / 8 / 10.NET Framework 4.8Binarymission.WPF.Controls.Panels.VirtualizingWrapPanel

The Event arguments container class for the event AboutToRenderChildItems

public class AboutToRenderChildItemsEventArgs : EventArgs

Inherits from / implements: EventArgs

Remarks

The control raises the event "AboutToRenderChildItems" and populates the event payload with an instance of AboutToRenderChildItemsEventArgs that contains some crucial data - viz., about to be made visible child items in the containing items control instance.

Members at a glance

AboutToRenderChildItemsEventArgsInstance constructor.
ChildItemIndicesToRenderGets a list of indices of child items that are about to be made visible in the itemscontrol's viewport.

Constructors

AboutToRenderChildItemsEventArgs

public AboutToRenderChildItemsEventArgs() : base()

Instance constructor.

Properties

ChildItemIndicesToRender

public List<long> ChildItemIndicesToRender

Gets a list of indices of child items that are about to be made visible in the itemscontrol's viewport.

The list of indices (at this time of release) will always contain only two elements, the first index element value will point to the (actual) index of the very first item to be rendered in the viewport, and the second element value will point to the (actual) index of the last visible item in the view port that is about to be rendered.