18 references to _innerList
System.Windows.Forms (18)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutStyleCollection.cs (18)
38
int index = ((IList)
_innerList
).Add(tableLayoutStyle);
53
_innerList
.Insert(index, tableLayoutStyle);
59
get =>
_innerList
[index];
70
_innerList
[index] = tableLayoutStyle;
93
if (!
_innerList
.Remove(tableLayoutStyle))
104
foreach (TableLayoutStyle style in
_innerList
)
109
_innerList
.Clear();
115
TableLayoutStyle style =
_innerList
[index];
117
_innerList
.RemoveAt(index);
121
bool IList.Contains(object? style) => ((IList)
_innerList
).Contains(style);
123
int IList.IndexOf(object? style) => ((IList)
_innerList
).IndexOf(style);
125
bool IList.IsFixedSize => ((IList)
_innerList
).IsFixedSize;
127
bool IList.IsReadOnly => ((IList)
_innerList
).IsReadOnly;
129
void ICollection.CopyTo(Array array, int startIndex) => ((ICollection)
_innerList
).CopyTo(array, startIndex);
131
public int Count =>
_innerList
.Count;
133
bool ICollection.IsSynchronized => ((ICollection)
_innerList
).IsSynchronized;
135
object ICollection.SyncRoot => ((ICollection)
_innerList
).SyncRoot;
137
IEnumerator IEnumerable.GetEnumerator() =>
_innerList
.GetEnumerator();