ホームページ > バックエンド開発 > C++ > WinForms で DataGridView セルを結合するにはどうすればよいですか?

WinForms で DataGridView セルを結合するにはどうすればよいですか?

Barbara Streisand
リリース: 2025-01-12 15:28:43
オリジナル
180 人が閲覧しました

How to Merge DataGridView Cells in WinForms?

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 サイトの他の関連記事を参照してください。

ソース:php.cn
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート