BK
Babak Keradman
February 14, 2006 07:57 PM UTC
nevermind I figured it out. I handled the DrawCell event.
private void grid_TableControlDrawCell(object sender, Syncfusion.Windows.Forms.Grid.Grouping.GridTableControlDrawCellEventArgs e)
{
if(e.Inner.Style.CellType.Equals("PushButton"))
{
e.Inner.Style.ResetTextColor();
}
}