c# – 在DataGridView中对行进行分组

前端之家收集整理的这篇文章主要介绍了c# – 在DataGridView中对行进行分组前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想在 Windows窗体上的DataGridView中对具有相同名称的行进行分组,这是我想要实现的图像.

是否可以在不使用任何第三方工具的情况下实施?

解决方法

您可以尝试使用垂直单元格合并的MSFlexGrid MergeCells属性功能,而不是本文第 DataGridView Grouping in C#/VB.NET: Two Recipes条中所述的行分组.在此示例中,属于组的行使用垂直合并的单元格可视地连接 – 而不是使用传统的水平组行.
protected override void OnCellPainting(DataGridViewCellPaintingEventArgs args)
{
  base.OnCellPainting(args);

  args.AdvancedBorderStyle.Bottom =
    DataGridViewAdvancedCellBorderStyle.None;

  // Ignore column and row headers and first row
  if (args.RowIndex < 1 || args.ColumnIndex < 0)
    return;

  if (IsRepeatedCellValue(args.RowIndex,args.ColumnIndex))
  {
    args.AdvancedBorderStyle.Top =
      DataGridViewAdvancedCellBorderStyle.None;
  }
  else
  {
    args.AdvancedBorderStyle.Top = AdvancedCellBorderStyle.Top;
  }
}
原文链接:https://www.f2er.com/csharp/91853.html

猜你在找的C#相关文章