Implemented interface member:
property
Name
Microsoft.Maui.Controls.ITemplatedItemsList<TItem>.Name
2 writes to Name
Microsoft.Maui.Controls (2)
TemplatedItemsList.cs (2)
740 groupProxy.Name = item.ToString(); 768 setter: static (list, val) => list.Name = val));
5 references to Name
Microsoft.Maui.Controls (5)
ListView\ListView.cs (1)
495 displayBinding = group.Name;
TemplatedItemsList.cs (4)
23 /// <summary>Bindable property for <see cref="Name"/>.</summary> 24 public static readonly BindableProperty NameProperty = BindableProperty.Create(nameof(Name), typeof(string), typeof(TemplatedItemsList<TView, TItem>), null); 766 nameof(TemplatedItemsList<TView, TItem>.Name), 767 getter: static (TemplatedItemsList<TView, TItem> list) => list.Name,