ListView.ListViewGroup.cs 219 B

12345678910
  1. namespace System.Windows.Forms
  2. {
  3. public class ListViewGroup
  4. {
  5. public string Name { get; set; }
  6. public string Header { get; set; }
  7. public override string ToString() => Header;
  8. }
  9. }