Gridviewレイアウトに関連する問題を解決するためのヘルプが必要です。C#.Net言語を使用してItemtemplate列で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
空白です。
したがって、グリッドは奇妙な形をしています。ここで何が起こっているのかわからない。
誰か助けてもらえますか?