BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
UseGDI = true;
UseDoubleBuffer = false;
Model.UseGridNonVirtualDataCache = true;
this.OptimizeDrawBackground = true;
this.OptimizeInsertRemoveCells = true;
this.SupportsPrepareViewStyleInfo = false;
You do not have access to QueryCellInfo or PrepareViewSyleInfo with these settings. You are using GDI to draw things so you do not have access to alpha blending and antialiasing text that GDI+ gives you.
>UseGDI = true;
>UseDoubleBuffer = false;
>Model.UseGridNonVirtualDataCache = true;
>this.OptimizeDrawBackground = true;
>this.OptimizeInsertRemoveCells = true;
>this.SupportsPrepareViewStyleInfo = false;
>
>
>You do not have access to QueryCellInfo or PrepareViewSyleInfo with these settings. You are using GDI to draw things so you do not have access to alpha blending and antialiasing text that GDI+ gives you.
for(int i = 1; i <= this.grid.RowCount; i += 2)
{
this.grid.RowStyles[i].BackColor = Color.Red;
}