我使用datatable类来收集数据,然后将其绑定到datagridview windows窗体。
我想知道是否有可能进行这样的改变,如附图所示?
答案 0 :(得分:0)
在gridview rowdatabound中:
if (e.Row.RowType == DataControlRowType.Header)
{
e.Row.Cells[1].ColumnSpan = 2;
e.Row.Cells[2].Visible = false;
e.Row.Cells[1].Text = "Optimized";
}