13 references to List
System.Windows.Forms (13)
System\Windows\Forms\Controls\ListView\ListViewGroupCollection.cs (13)
24
public int Count =>
List
.Count;
38
get =>
List
[index];
43
if (
List
.Contains(value))
50
List
[index] = value;
124
int index = ((IList)
List
).Add(group);
127
_listView.InsertGroupInListView(
List
.Count, group);
202
List
.Clear();
209
public bool Contains(ListViewGroup value) =>
List
.Contains(value);
221
public void CopyTo(Array array, int index) => ((ICollection)
List
).CopyTo(array, index);
223
public IEnumerator GetEnumerator() =>
List
.GetEnumerator();
225
public int IndexOf(ListViewGroup value) =>
List
.IndexOf(value);
249
List
.Insert(index, group);
280
if (!
List
.Remove(group))