首先点开智能小三角,编辑列,在DataGridViewButtonColumn 列里面的外观DataGridViewCellStyle 后面的小按钮打开,修改BackColor值即可。
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(……);
大小定记不得了,应该是这样子。
楼上两个方法都是修改单元格的背景吧?
能否修改按钮的?
人家问的是修改按钮的。