Hallo zusammen,
wenn ich in dem Ereignis DrawColumnCell folgendes einbaue:
Delphi-Quellcode:
if (gdSelected in State) then
begin
DBGrid.Canvas.Font.Style := DBG_WorkFlow_GruppenBau.Canvas.Font.Style + [fsBold];
DBGrid.Canvas.Font.Color := clBlack;
DBGrid.DefaultDrawColumnCell(Rect, DataCol, Column, State);
end
else
begin
DBGrid.Canvas.Font.Style := DBG_WorkFlow_GruppenBau.Canvas.Font.Style - [fsBold];
DBGrid.DefaultDrawColumnCell(Rect, DataCol, Column, State);
end;
dann macht er zwar die selektierte Zeile FETT, aber man sieht dahinter auch noch den Text in NICHT FETT.
Was muss ich tuen ?
Gruss
Holger