1 write to GroupIndex
System.Windows.Forms (1)
System\Windows\Forms\Controls\ListView\ListViewGroupEventArgs.cs (1)
18GroupIndex = groupIndex;
8 references to GroupIndex
System.Windows.Forms (3)
System\Windows\Forms\Controls\ListView\ListView.cs (3)
4408if (IsAccessibilityObjectCreated && GroupsEnabled && e.GroupIndex >= 0 && e.GroupIndex < Groups.Count) 4410ListViewGroup listViewGroup = Groups[e.GroupIndex];
System.Windows.Forms.Tests (3)
System\Windows\Forms\AccessibleObjects\ListViewGroup.ListViewGroupAccessibleObjectTests.cs (1)
807listView.GroupCollapsedStateChanged += (_, e) => eventGroupIndices.Add(e.GroupIndex);
System\Windows\Forms\GroupLinkClickEventArgsTests.cs (1)
16Assert.Equal(groupIndex, e.GroupIndex);
System\Windows\Forms\ListViewGroupEventArgsTests.cs (1)
16Assert.Equal(groupIndex, args.GroupIndex);
WinFormsControlsTest (2)
ListViewTest.cs (2)
177MessageBox.Show($"CollapsedState changed at group with index {e.GroupIndex}"); 202MessageBox.Show(this, $"Task at group index {e.GroupIndex} was clicked", "GroupClick Event");