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);
23
Assert.Throws<ArgumentNullException>("owner", () => new ListView.
CheckedListViewItemCollection
(null!));
5 references to CheckedListViewItemCollection
System.Windows.Forms (2)
System\Windows\Forms\Controls\ListView\ListView.cs (2)
152
private
CheckedListViewItemCollection
? _checkedListViewItemCollection;
599
public
CheckedListViewItemCollection
CheckedItems
System.Windows.Forms.Tests (3)
System\Windows\Forms\ListView.CheckedListViewItemCollectionTests.cs (3)
11
private readonly ListView.
CheckedListViewItemCollection
_collection;
140
ListView.
CheckedListViewItemCollection
syncRoot = (ListView.
CheckedListViewItemCollection
)((ICollection)_collection).SyncRoot;