需要帮助来解决与 Gridview 布局相关的问题。我正在尝试使用 C#.Net 语言使用 Itemtemplate Columns 实现custome Gridview,并希望使用 RowSpan 属性包含视图。
我尝试使用下面的代码,但对我不起作用
请检查我使用的代码:
protected void GridView31_DataBound1(object sender, EventArgs e)
{
for (int rowIndex = grdView31.Rows.Count - 2; rowIndex >= 0; rowIndex--)
{
GridViewRow gvRow = grdView31.Rows[rowIndex];
GridViewRow gvPreviousRow = grdView31.Rows[rowIndex + 1];
for (int cellCount = 0; cellCount < gvRow.Cells.Count; 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;
}
}
}
}
但每次gvRow.Cells[cellCount].Text == gvPreviousRow.Cells[cellCount].Text
都是空白。
因此,网格呈现出奇怪的形状。不知道这里发生了什么。
任何人都可以帮忙吗?