17 references to InnerList
System.Windows.Forms (17)
winforms\Managed\System\WinForms\ListView.cs (17)
8329return InnerList.Count; 8373if (index < 0 || index >= InnerList.Count) { 8377return InnerList[index]; 8380if (index < 0 || index >= InnerList.Count) { 8384InnerList[index] = value; 8468InnerList.Add(value); 8524InnerList.AddRange(items); 8538InnerList.AddRange(itemArray); 8546InnerList.Clear(); 8554return InnerList.Contains(item); 8581InnerList.CopyTo(dest, index); 8637if (this.InnerList.OwnerIsVirtualListView && !this.InnerList.OwnerIsDesignMode) { 8641return InnerList.GetEnumerator(); 8715InnerList.Insert(index, item); 8783InnerList.Remove(item); 8795InnerList.RemoveAt(index);