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