Closed kryslt closed 4 years ago
Please generate patch for this. And replace Canvas.Brush.Color := RGB(240,240,255);
with some generous solution (extra published color property etc.).
i do not know how to patch ,but i have upload a file in another issues
No suitable patch included, closing this issue.
Original report by liuzg2 (Bitbucket: liuzg2, GitHub: liuzg2).
function TKCustomGrid.InternalMove
end;
mcRight:
begin
Inc(ACol);
i add this to draw mod row color
procedure TKGridCellPainter.Drawmodrows;
begin
begin
if FRow mod 2 = 0 then
Canvas.Brush.Color := self.FGrid.Color
else
Canvas.Brush.Color := RGB(240,240,255);
end;
end;