WinForms DataGridView セルの結合: 完全ガイド
WinForms の DataGridView でセルを結合する鍵は、重複する値を見つけて処理することです。詳しい手順は次のとおりです:
重複する値を検索
セル値が等しいかどうかを比較するヘルパー メソッドを定義します:
<code class="language-csharp">bool IsTheSameCellValue(int column, int row) { DataGridViewCell cell1 = dataGridView1[column, row]; DataGridViewCell cell2 = dataGridView1[column, row - 1]; if (cell1.Value == null || cell2.Value == null) { return false; } return cell1.Value.ToString() == cell2.Value.ToString(); }</code>
セルペインティング
DataGridView の CellPainting イベントで、結合されたセルの境界線のスタイルを調整します。
<code class="language-csharp">private void dataGridView1_CellPainting(object sender, DataGridViewCellPaintingEventArgs e) { e.AdvancedBorderStyle.Bottom = DataGridViewAdvancedCellBorderStyle.None; if (e.RowIndex < 0 || e.ColumnIndex < 0) return; if (IsTheSameCellValue(e.ColumnIndex, e.RowIndex)) { e.AdvancedBorderStyle.Top = DataGridViewAdvancedCellBorderStyle.None; } }</code>
セルの書式設定イベント (CellFormatting)
CellFormatting イベントで、結合されたセルの書式設定を処理します:
<code class="language-csharp">private void dataGridView1_CellFormatting(object sender, DataGridViewCellFormattingEventArgs e) { if (e.RowIndex == 0) return; if (IsTheSameCellValue(e.ColumnIndex, e.RowIndex)) { e.Value = ""; e.FormattingApplied = true; } }</code>
フォームの読み込み
列の自動生成を無効にする:
<code class="language-csharp">private void Form1_Load(object sender, EventArgs e) { dataGridView1.AutoGenerateColumns = false; }</code>
上記の手順により、DataGridView 内のセルを結合して、目的のデータ プレゼンテーション効果を実現できます。
以上がWinForms で DataGridView セルを結合するにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。