DataGridView WinForms中的Merge / Span CheckBox

时间:2018-02-14 16:49:33

标签: c# winforms

通过执行此操作,我成功地将DataGrid视图中的文本行合并到动态行数范围内。

if (IsTheSameCellValue(e.ColumnIndex, e.RowIndex))
{ 
    if (e.ColumnIndex != 1)
        e.Value = "";       
    e.FormattingApplied = true;
    e.CellStyle.Alignment = DataGridViewContentAlignment.MiddleCenter;
}

并隐藏cellPaint事件中的边框。但这对于复选框单元格不起作用,因为e.value=""无效。

合并/跨行复选框类型列的最佳方法是什么?

0 个答案:

没有答案