2

需要帮助..我正在使用 delphi 10.1 berlin。与 Embarcadero Delphy Code Gear 的其他早期版本有一些不同。我需要更改 TGrid 行中的字体颜色。有了下一个代码,我将更改背景颜色,但我只需要更改字体颜色:

  aRowColor.Color := arSTATUS_GRID_COLOR[0];
  Canvas.FillRect(Bounds, 0, 0, [], 1, aRowColor);
  Column.DefaultDrawCell(Canvas, Bounds, Row, Value, State);
4

1 回答 1

4

Column.DefaultDrawCell()您可以FMX.Graphics.TCanvas.FillText()在 gridsOnDrawColumnCell()事件中使用,而不是调用。

文档解释了细节,但重点是Canvas.Fill.Color在调用之前设置为所需的颜色Canvas.FillText()

示例代码:

procedure TForm28.Grid1DrawColumnCell(Sender: TObject; const Canvas: TCanvas;
  const Column: TColumn; const Bounds: TRectF; const Row: Integer;
  const Value: TValue; const State: TGridDrawStates);
begin
  case Row of
    0: Canvas.Fill.Color := TAlphaColors.Red;
    1: Canvas.Fill.Color := TAlphaColors.Blue;
    2: Canvas.Fill.Color := TAlphaColors.Green;
    3: Canvas.Fill.Color := TAlphaColors.Blueviolet;
  end;
  Canvas.FillText(Bounds, Value.AsString, false, 1, [], TTextAlign.Leading, TTextAlign.Center);
end;

以及它的外观:

在此处输入图像描述

于 2016-10-11T11:41:58.267 回答