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)
218listView.GroupImageList = groupImageList; 358listView.GroupImageList = groupImageList;
System\Windows\Forms\ListViewTests.cs (13)
1564GroupImageList = value 1571listView.GroupImageList = value; 1586GroupImageList = imageList 1589listView.GroupImageList = value; 1594listView.GroupImageList = value; 1669listView.GroupImageList = value; 1677listView.GroupImageList = value; 1755listView.GroupImageList = value; 1763listView.GroupImageList = value; 1780GroupImageList = imageList1 1790listView.GroupImageList = imageList2; 1815listView.GroupImageList = imageList1; 1830listView.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)
86Assert.Null(control.GroupImageList); 1567Assert.Same(value, listView.GroupImageList); 1572Assert.Same(value, listView.GroupImageList); 1590Assert.Same(value, listView.GroupImageList); 1595Assert.Same(value, listView.GroupImageList); 1670Assert.Same(value, listView.GroupImageList); 1678Assert.Same(value, listView.GroupImageList); 1756Assert.Same(value, listView.GroupImageList); 1764Assert.Same(value, listView.GroupImageList); 1783Assert.Same(imageList1, listView.GroupImageList); 1786Assert.Null(listView.GroupImageList); 1792Assert.Same(imageList2, listView.GroupImageList); 1816Assert.Same(imageList1, listView.GroupImageList); 1823Assert.Null(listView.GroupImageList); 1832Assert.Same(imageList2, listView.GroupImageList);