BindableList

Builds BindableList<TItem> values from collection expressions ([a, b, c]).
public static class BindableList

Methods

Create

Wraps the elements of a collection expression as a list source.

public static BindableList<TItem> Create<TItem>(
  ReadOnlySpan<TItem> items)
ParameterSummary
ReadOnlySpan<TItem> itemsThe items to show.
Type parameterSummary
TItemThe element type of the list.

Returns

  • BindableList<TItem>: A list source over a copy of the items.