71 references to InnerList
System.Windows.Forms (71)
winforms\Managed\System\WinForms\Control.cs (6)
14771
InnerList
.Add(value);
14878
ccOther.
InnerList
.AddRange(this);
14887
return
InnerList
.Contains(control);
14968
return
InnerList
.IndexOf(control);
15042
InnerList
.Remove(value);
15094
Control control = (Control)
InnerList
[index];
winforms\Managed\System\WinForms\Layout\ArrangedElementCollection.cs (24)
40
get { return (IArrangedElement)
InnerList
[index]; }
52
if (this.
InnerList
[i] != other.
InnerList
[i]) {
71
this.
InnerList
[fromIndex] = this.
InnerList
[toIndex];
95
this.
InnerList
[toIndex] = element;
107
destinationList.
InnerList
[--destinationIndex] = sourceList.
InnerList
[--sourceIndex];
111
destinationList.
InnerList
[destinationIndex++] = sourceList.
InnerList
[sourceIndex++];
117
void IList.Clear() {
InnerList
.Clear(); }
118
bool IList.IsFixedSize { get { return
InnerList
.IsFixedSize; }}
119
bool IList.Contains(object value) { return
InnerList
.Contains(value); }
121
public virtual bool IsReadOnly { get { return
InnerList
.IsReadOnly; }}
122
void IList.RemoveAt(int index) {
InnerList
.RemoveAt(index); }
123
void IList.Remove(object value) {
InnerList
.Remove(value); }
124
int IList.Add(object value) { return
InnerList
.Add(value); }
125
int IList.IndexOf(object value) { return
InnerList
.IndexOf(value); }
131
get { return
InnerList
[index]; }
139
get { return
InnerList
.Count; }
141
object ICollection.SyncRoot { get { return
InnerList
.SyncRoot; }}
143
public void CopyTo(Array array, int index) {
InnerList
.CopyTo(array, index); }
144
bool ICollection.IsSynchronized { get { return
InnerList
.IsSynchronized; }}
149
public virtual IEnumerator GetEnumerator() { return
InnerList
.GetEnumerator(); }
winforms\Managed\System\WinForms\ToolStripItemCollection.cs (13)
73
return (ToolStripItem)(
InnerList
[index]);
91
return (ToolStripItem)
InnerList
[index];
124
int retVal =
InnerList
.Add(value);
182
return
InnerList
.Contains(value);
341
bool IList.IsFixedSize { get { return
InnerList
.IsFixedSize; }}
342
bool IList.Contains(object value) { return
InnerList
.Contains(value); }
352
get { return
InnerList
[index]; }
362
InnerList
.Insert(index, value);
382
return
InnerList
.IndexOf(value);
460
InnerList
.Remove(value);
474
item = (ToolStripItem)(
InnerList
[index]);
476
InnerList
.RemoveAt(index);
499
InnerList
.CopyTo(array, index);
winforms\Managed\System\WinForms\ToolStripPanel.cs (15)
1342
return (ToolStripPanelRow)(
InnerList
[index]);
1354
int retVal =
InnerList
.Add(value);
1417
return
InnerList
.Contains(value);
1441
bool IList.IsFixedSize { get { return
InnerList
.IsFixedSize; } }
1442
bool IList.Contains(object value) { return
InnerList
.Contains(value); }
1443
bool IList.IsReadOnly { get { return
InnerList
.IsReadOnly; } }
1453
get { return
InnerList
[index]; }
1463
return
InnerList
.IndexOf(value);
1472
InnerList
.Insert(index, value);
1505
InnerList
.Remove(value);
1516
item = (ToolStripPanelRow)(
InnerList
[index]);
1518
InnerList
.RemoveAt(index);
1529
InnerList
.CopyTo(array, index);
1559
InnerList
.Sort(new YXComparer());
1562
InnerList
.Sort(new XYComparer());
winforms\Managed\System\WinForms\ToolStripPanelRow.cs (13)
2023
cellCollection = new ArrangedElementCollection(
InnerList
);
2052
int index =
InnerList
.Add(control.ToolStripPanelCell);
2121
public override IEnumerator GetEnumerator() { return new ToolStripPanelCellToControlEnumerator(
InnerList
); }
2128
cell = (ToolStripPanelCell)(
InnerList
[index]);
2136
ToolStripPanelCell cell = (ToolStripPanelCell)(
InnerList
[i]);
2150
bool IList.IsFixedSize { get { return
InnerList
.IsFixedSize; } }
2152
bool IList.Contains(object value) { return
InnerList
.Contains(value); }
2154
bool IList.IsReadOnly { get { return
InnerList
.IsReadOnly; } }
2193
InnerList
.Insert(index, control.ToolStripPanelCell);
2262
ToolStripPanelCell cell =
InnerList
[index] as ToolStripPanelCell;
2263
InnerList
.RemoveAt(index);
2282
if (index >= array.Length ||
InnerList
.Count > array.Length - index) {
2286
for (int i = 0; i <
InnerList
.Count; i++) {