问题是,当我在表单构造函数中通过 RowTemplate.DefaultCellStyle.SelectionBackColor 更改所选行的颜色时,它可以工作,但是当用户单击某些按钮以更改网格选择的背景颜色时,它在按钮事件中不起作用!请有任何帮助!
public Form1()
{
InitializeComponent();
dataGridView1.RowTemplate.DefaultCellStyle.SelectionBackColor=Color.Red; //this works fine
}
void button2_Click(object sender, EventArgs e)
{
dataGridView1.RowTemplate.DefaultCellStyle.SelectionBackColor=Color.Blue;//but this does not work
}