2 instantiations of ListViewItemCollection
System.Windows.Forms (2)
winforms\Managed\System\WinForms\ListView.cs (1)
252listItemCollection = new ListViewItemCollection(new ListViewNativeItemCollection(this));
winforms\Managed\System\WinForms\ListViewGroup.cs (1)
160items = new ListView.ListViewItemCollection(new ListViewGroupItemCollection(this));
9 references to ListViewItemCollection
System.Windows.Forms (9)
winforms\Managed\System\WinForms\ListView.cs (6)
169private ListViewItemCollection listItemCollection; 1111public ListViewItemCollection Items { 4399ListViewItemCollection tempItems = Items; 8531public void AddRange(ListViewItemCollection items) { 8606private ArrayList FindInternal(string key, bool searchAllSubItems, ListViewItemCollection listViewItems, ArrayList foundItems) { 8823internal class ListViewNativeItemCollection : ListViewItemCollection.IInnerList {
winforms\Managed\System\WinForms\ListViewGroup.cs (2)
42private ListView.ListViewItemCollection items; 156public ListView.ListViewItemCollection Items {
winforms\Managed\System\WinForms\ListViewGroupItemCollection.cs (1)
16internal class ListViewGroupItemCollection : ListView.ListViewItemCollection.IInnerList {