C# DataGridViewButtonColumn 按键的背景色怎样修改?

2024-11-19 12:38:50
推荐回答(3个)
回答(1):

首先点开智能小三角,编辑列,在DataGridViewButtonColumn 列里面的外观DataGridViewCellStyle 后面的小按钮打开,修改BackColor值即可。

回答(2):

System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();

dataGridViewCellStyle1.BackColor = System.Drawing.Color.Red;

==============

那可以用
System.Windows.Forms.DataGridViewCell c = new System.Windows.Forms.DataGridViewCell();

button b = (button)(c.findControls("铵钮名"));

b.BackColor = new Color(……);

大小定记不得了,应该是这样子。

回答(3):

楼上两个方法都是修改单元格的背景吧?

能否修改按钮的?

人家问的是修改按钮的。