我在Windows窗体上放置了一个DataGridView,在datagridview中放置了一个Button 现在我想在单元格的基础上更改按钮的文本。
我该怎么做?
答案 0 :(得分:2)
将Cell转换为DataGridViewButtonCell并根据需要使用它。
var BtnCell = (DataGridViewButtonCell)YourDataGridView.Rows[yourindex].Cells[cellindex];
BtnCell.Value = "New Button Value";
答案 1 :(得分:0)
来自MSDN:
您可以将UseColumnTextForButtonValue
属性值true显示为单元格按钮上的Text属性值。