3 instantiations of CheckedListViewItemCollection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListView.cs (1)
603_checkedListViewItemCollection ??= new CheckedListViewItemCollection(this);
System.Windows.Forms.Tests (2)
System\Windows\Forms\ListView.CheckedListViewItemCollectionTests.cs (2)
16_collection = new ListView.CheckedListViewItemCollection(_listView); 23Assert.Throws<ArgumentNullException>("owner", () => new ListView.CheckedListViewItemCollection(null!));
5 references to CheckedListViewItemCollection
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.cs (2)
152private CheckedListViewItemCollection? _checkedListViewItemCollection; 599public CheckedListViewItemCollection CheckedItems
System.Windows.Forms.Tests (3)
System\Windows\Forms\ListView.CheckedListViewItemCollectionTests.cs (3)
11private readonly ListView.CheckedListViewItemCollection _collection; 140ListView.CheckedListViewItemCollection syncRoot = (ListView.CheckedListViewItemCollection)((ICollection)_collection).SyncRoot;