如何在FMX.Grid.TGrid中设置行的背景颜色?

时间:2013-12-06 08:10:59

标签: delphi firemonkey delphi-xe4

我使用ObjectList<Person>并将其与GridGetValue()方法一起使用。我的人员课程包含姓名和性别,其中性别是值。哪个在网格中是不可见的。

方法:

procedure TForm1.PersonGridGetValue(Sender: TObject; const Col, Row: Integer; var Value:TValue);
  begin
    if Col = 0 then
      Value := PersonRecord.PersonList.Items[Row].name;
  end;

如何根据对象列表中的值设置行的背景颜色?

0 个答案:

没有答案