본문 바로가기

Delphi/꿀팁

TcxGrid의 Cell Color 변경하기

cxGrid의 TableView 이벤트 중 OnCustomDrawCell을 생성합니다.

procedure cxGrid1DBTableView1CustomDrawCell(Sender: TcxCustomGridTableView;

ACanvas: TcxCanvas; AViewInfo: TcxGridTableDataCellViewInfo; var ADone: Boolean);

var

  ARect : TRect;

begin

  ACanvas.Font.Color := clRed; //Font Color 변경

  ACanvas.FillRect(ARect, clYellow); //Cell Color 변경

end;


반응형