DataGridViewButtonCell
に myを追加する必要がColumn
あり、お互いに異なる名前を付ける必要があります。
しかし、テキスト プロパティは見つかりませんでした。
誰でも私を助けてもらえますか?
私はそのようなことをします
DataGridViewButtonCell b = new DataGridViewButtonCell();
b.Value = "name";
MainTable.Rows.Add(b);
そして、それは機能しません
DataGridViewButtonCell
に myを追加する必要がColumn
あり、お互いに異なる名前を付ける必要があります。
しかし、テキスト プロパティは見つかりませんでした。
誰でも私を助けてもらえますか?
私はそのようなことをします
DataGridViewButtonCell b = new DataGridViewButtonCell();
b.Value = "name";
MainTable.Rows.Add(b);
そして、それは機能しません
すべてのボタンに同じテキストを使用する場合は、UseColumnTextForButtonValueプロパティを使用します。
ボタンごとに異なるテキストが必要な場合は、DataGridViewCell.Valueプロパティを使用します。
これを使用して、最初にデフォルト ボタンを含むすべてのボタンに同じテキストを表示します
DataGridView.Columns["Buttons_Index"].DefaultCellStyle.NullValue = "name";
DataGridViewCell.Value プロパティを探しています
試す
yourDataGridView.Rows[rowIndex].Cells[columnIndex].Value