SR
Sri Rajan
Syncfusion Team
June 30, 2008 10:26 AM UTC
Hi Mahesh,
Thank you for your interest in Syncfusion products.
Please try this coding to change the backcolor of a particular column, using Context Menu Strip.
private void applyColorToolStripMenuItem_Click(object sender, EventArgs e)
{
applyColorToolStripMenuItem.BackColor = Color.Aqua;
this.gridDataBoundGrid1.Binder.InternalColumns[3].StyleInfo.BackColor = Color.Aqua;
this.gridDataBoundGrid1.Refresh();
}
Please let me know if this helps.
Best Regards,
Srirajan.