DataGridViewButtonColumn.CellTemplate プロパティとは? わかりやすく解説

Weblio 辞書 > コンピュータ > .NET Framework クラス ライブラリ リファレンス > DataGridViewButtonColumn.CellTemplate プロパティの意味・解説 

DataGridViewButtonColumn.CellTemplate プロパティ

メモ : このプロパティは、.NET Framework version 2.0新しく追加されたものです。

新しセル作成使用するテンプレート取得または設定します

名前空間: System.Windows.Forms
アセンブリ: System.Windows.Forms (system.windows.forms.dll 内)
構文構文

Public Overrides Property
 CellTemplate As DataGridViewCell
Dim instance As DataGridViewButtonColumn
Dim value As DataGridViewCell

value = instance.CellTemplate

instance.CellTemplate = value
public override DataGridViewCell CellTemplate { get;
 set; }
public:
virtual property DataGridViewCell^ CellTemplate {
    DataGridViewCell^ get () override;
    void set (DataGridViewCell^ value) override;
}
/** @property */
public DataGridViewCell get_CellTemplate ()

/** @property */
public void set_CellTemplate (DataGridViewCell
 value)
public override function get
 CellTemplate () : DataGridViewCell

public override function set
 CellTemplate (value : DataGridViewCell)

プロパティ
列に含まれる他のすべてのセルモデルとする DataGridViewCell。

例外例外
例外種類条件

InvalidCastException

このプロパティ設定時に指定された値を DataGridViewButtonCell にキャストできませんでした

解説解説

DataGridViewButtonColumn クラスコンストラクタは、このプロパティ新しく作成されDataGridViewButtonCell初期化します。

注意に関するメモ注意

セル テンプレートプロパティ変更しても、列の既存セルユーザー インターフェイス (UI) に直ち反映されることはありません。この変更は、列が再生成されたとき (列を並べ替えたり DataGridView.InvalidateColumn メソッド呼び出したりした場合など) に、初め反映されます。

使用例使用例

DataGridViewButtonColumn使用して従業員販売成績表示する方法次のコード例示しますセル テンプレート使用してすべてのボタンに同じ色を適用します。

Private Sub AddButtonColumn()
    Dim buttons As New DataGridViewButtonColumn()
    With buttons
        .HeaderText = "Sales"
        .Text = "Sales"
        .UseColumnTextForButtonValue = True
        .AutoSizeMode = DataGridViewAutoSizeColumnMode.DisplayedCells
        .FlatStyle = FlatStyle.Standard
        .CellTemplate.Style.BackColor = Color.Honeydew
        .DisplayIndex = 0
    End With

    DataGridView1.Columns.Add(buttons)

End Sub
private void AddButtonColumn()
{
    DataGridViewButtonColumn buttons = new DataGridViewButtonColumn();
    {
        buttons.HeaderText = "Sales";
        buttons.Text = "Sales";
        buttons.UseColumnTextForButtonValue = true;
        buttons.AutoSizeMode =
            DataGridViewAutoSizeColumnMode.AllCells;
        buttons.FlatStyle = FlatStyle.Standard;
        buttons.CellTemplate.Style.BackColor = Color.Honeydew;
        buttons.DisplayIndex = 0;
    }

    DataGridView1.Columns.Add(buttons);

}
private:
    void AddButtonColumn()
    {
        DataGridViewButtonColumn^ buttons = gcnew DataGridViewButtonColumn();
        {
            buttons->HeaderText = "Sales";
            buttons->Text = "Sales";
            buttons->UseColumnTextForButtonValue = true;
            buttons->AutoSizeMode =
                DataGridViewAutoSizeColumnMode::AllCells;
            buttons->FlatStyle = FlatStyle::Standard;
            buttons->CellTemplate->Style->BackColor = Color::Honeydew;
            buttons->DisplayIndex = 0;
        }

        DataGridView1->Columns->Add(buttons);

    }
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照
関連項目
DataGridViewButtonColumn クラス
DataGridViewButtonColumn メンバ
System.Windows.Forms 名前空間
DataGridView クラス
DataGridViewButtonColumn
DataGridViewCell
DataGridViewButtonCell クラス
DataGridView.InvalidateColumn


このページでは「.NET Framework クラス ライブラリ リファレンス」からDataGridViewButtonColumn.CellTemplate プロパティを検索した結果を表示しています。
Weblioに収録されているすべての辞書からDataGridViewButtonColumn.CellTemplate プロパティを検索する場合は、下記のリンクをクリックしてください。
 全ての辞書からDataGridViewButtonColumn.CellTemplate プロパティ を検索

英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「DataGridViewButtonColumn.CellTemplate プロパティ」の関連用語

DataGridViewButtonColumn.CellTemplate プロパティのお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



DataGridViewButtonColumn.CellTemplate プロパティのページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS