ItemsSourceViewGetOrCreate(IEnumerable) Method

Gets or creates an ItemsSourceView for the specified enumerable.

Definition

Namespace: Avalonia.Controls
Assembly: Avalonia.Controls (in Avalonia.Controls.dll) Version: 11.3.999
public static ItemsSourceView GetOrCreate(
	IEnumerable? items
)

Parameters

items  IEnumerable
The enumerable.

Return Value

ItemsSourceView

Remarks

This method handles the following three cases: - If items is null, returns Empty - If items is an ItemsSourceView returns the existing ItemsSourceView - Otherwise creates a new ItemsSourceView

See Also