ItemsSourceView<T> Class
Definition
public class ItemsSourceView<T>
Methods
| Name | Description |
|---|---|
| GetAt | Retrieves the item at the specified index. |
| GetEnumerator | No summary available. |
| Contains | Inherited from ItemsSourceView. |
| GetOrCreate (2 overloads) | Inherited from ItemsSourceView. |
| IndexOf | Inherited from ItemsSourceView. |
GetAt Method
Retrieves the item at the specified index.
public T GetAt(int index)
Parameters
index int
The index.
Returns
T
The item.
GetEnumerator Method
public System.Collections.Generic.IEnumerator<T> GetEnumerator()
Returns
System.Collections.Generic.IEnumerator<T>
Properties
| Name | Description |
|---|---|
| Empty | Gets an empty Avalonia.Controls.ItemsSourceView |
| Item | No summary available. |
| Count | Gets the number of items in the collection. Inherited from ItemsSourceView. |
| Source | Gets the source collection. Inherited from ItemsSourceView. |
Empty Property
Gets an empty Avalonia.Controls.ItemsSourceView
public Avalonia.Controls.ItemsSourceView<T><T> Empty { get; set; }
Item Property
public T Item { get; set; }
Events
| Name | Description |
|---|---|
| CollectionChanged | Occurs when the collection has changed to indicate the reason for the change and which items changed. Inherited from ItemsSourceView. |