kabirpatel
Programmer
Hi all,
How can I set the color property of a button column in a dataviewgrid control?
I have dynamically added my column as follows:
DataGridViewButtonColumn b = new DataGridViewButtonColumn();
grid.Columns.Insert(0, b);
I can set text properties by doing:
b.Text = "Edit"; etc....
but cannot set the color.
Thanks
Kabir