0

我有一个合并了第一列的gridview。我在数据绑定中使用了以下代码。

 for (int rowIndex = GridView1.Rows.Count - 2; rowIndex >= 0; rowIndex--)
 {
     GridViewRow gvRow = GridView1.Rows[rowIndex];
     GridViewRow gvPreviousRow = GridView1.Rows[rowIndex + 1];

     for (int cellCount = 0; cellCount < gvRow.Cells.Count - 3; cellCount++)   
     {
         if (gvRow.Cells[cellCount].Text == gvPreviousRow.Cells[cellCount].Text)
         {
             if (gvPreviousRow.Cells[cellCount].RowSpan < 2)
             {
                 gvRow.Cells[cellCount].RowSpan = 2;                           
             }
             else
             {
                 gvRow.Cells[cellCount].RowSpan = gvPreviousRow.Cells[cellCount].RowSpan + 1;                           
              }
                    gvPreviousRow.Cells[cellCount].Visible = false;
          }
      }
  }

我想根据第一列合并最后一列。
我尝试使用以下代码。但它没有用。

 for (int t = 0; t < GridView1.Rows.Count; t++)
 {
    GridView1.Rows[t].Cells[3].RowSpan = GridView1.Rows[t].Cells[0].RowSpan;            
 }

任何人都可以帮我这样做吗?

提前致谢

4

1 回答 1

1

正如我在评论中所说,如果您希望将第 4 行与第 3 行合并,则应在第 3 列上设置合并属性。

for (int t = 0; t < GridView1.Rows.Count; t++)
{
   GridView1.Rows[t].Cells[2].RowSpan = GridView1.Rows[t].Cells[0].RowSpan;            
}
于 2013-07-04T14:19:35.340 回答