16 writes to GroupImageList
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListView.cs (1)
2983GroupImageList = null;
System.Windows.Forms.Tests (15)
System\Windows\Forms\ListViewGroupTests.cs (2)
220listView.GroupImageList = groupImageList; 360listView.GroupImageList = groupImageList;
System\Windows\Forms\ListViewTests.cs (13)
1566GroupImageList = value 1573listView.GroupImageList = value; 1588GroupImageList = imageList 1591listView.GroupImageList = value; 1596listView.GroupImageList = value; 1671listView.GroupImageList = value; 1679listView.GroupImageList = value; 1757listView.GroupImageList = value; 1765listView.GroupImageList = value; 1782GroupImageList = imageList1 1792listView.GroupImageList = imageList2; 1817listView.GroupImageList = imageList1; 1832listView.GroupImageList = imageList2;
22 references to GroupImageList
System.Windows.Forms (7)
System\Windows\Forms\Controls\ListView\ListView.cs (5)
921/// The <see cref="GroupImageList"/> property allows you to specify an <see cref="ImageList"/> object that 924/// control is not limited to .ico files. Once an <see cref="ImageList"/> is assigned to the <see cref="GroupImageList"/> 927/// The size of the icons for the <see cref="GroupImageList"/> is specified by the <see cref="ImageList.ImageSize"/> property. 3697nint handle = (GroupImageList is null) ? 0 : GroupImageList.Handle;
System\Windows\Forms\Controls\ListView\ListViewGroupImageIndexer.cs (2)
25/// Gets the <see cref="ListView.GroupImageList"/> of the <see cref="ListView"/> 30get => _owner.ListView?.GroupImageList;
System.Windows.Forms.Tests (15)
System\Windows\Forms\ListViewTests.cs (15)
88Assert.Null(control.GroupImageList); 1569Assert.Same(value, listView.GroupImageList); 1574Assert.Same(value, listView.GroupImageList); 1592Assert.Same(value, listView.GroupImageList); 1597Assert.Same(value, listView.GroupImageList); 1672Assert.Same(value, listView.GroupImageList); 1680Assert.Same(value, listView.GroupImageList); 1758Assert.Same(value, listView.GroupImageList); 1766Assert.Same(value, listView.GroupImageList); 1785Assert.Same(imageList1, listView.GroupImageList); 1788Assert.Null(listView.GroupImageList); 1794Assert.Same(imageList2, listView.GroupImageList); 1818Assert.Same(imageList1, listView.GroupImageList); 1825Assert.Null(listView.GroupImageList); 1834Assert.Same(imageList2, listView.GroupImageList);