How to Change the Backcolor of a Column in Windows Forms GridDataBoundGrid(Classic)
9 Dec 2019 / 1 minute to read
The GridDataBoundGrid maintains a collection of GridBoundColumn objects that will allow you to set column properties like BackColor, TextColor, Font, etc. You can explicitly add GridBoundColumns to this.gridDataBoundGrid1.GridBoundColumns property either from code or at design-time. If you do not explicitly add GridBoundColumns to this collection, then the grid will generate an internal set of columns that you can use, this.gridDataBoundGrid1.Binder.InternalColumns.
To change the BackColor of a column named “Price”, use the code given below.
//If you have added GridBoundColumns.
this.gridDataBoundGrid1.GridBoundColumns["Price"].StyleInfo.BackColor = Color.Red;
//If you have not explicitly added GridBoundColumns.
this.gridDataBoundGrid1.Binder.InternalColumns["Price"].StyleInfo.BackColor = Color.Red;
'If you have added GridBoundColumns.
Me.gridDataBoundGrid1.GridBoundColumns("Price").StyleInfo.BackColor = Color.Red
'If you have not explicitly added GridBoundColumns.
Me.gridDataBoundGrid1.Binder.InternalColumns("Price").StyleInfo.BackColor = Color.Red
Was this page helpful?
Yes
No
Thank you for your feedback!
Thank you for your feedback and comments. We will rectify this as soon as possible!
An unknown error has occurred. Please try again.
Help us improve this page