动态更新StringGrid的颜色
StringGrid控件是一个有许多用户接口的显示数据库的控件,
以下的程序告诉您如何根据显示的内容改变字体的显示颜色。
例如,如果一个城市的人口大于200万,我们就让它显示为蓝色。
使用的控件事件为StringGrid.OnDrawColumeCell.
procedure TForm1.StringGrid1DrawColumnCell(Sender: TObject;
const Rect: TRect; DataCol: Integer; Column: TColumn;
State: TGridDrawState);
begin
if Table1.FieldByName('Population').AsInteger >20000000 then
StringGrid1.Canvas.Font.Color := clBlue;
StringGrid1.DefaultDrawColumnCell(Rect, DataCol, Column, State);
end;
上面的例子是简单的,但是你可以根据自己的需要扩充,例如字体也变化等,
甚至你可以调用画圆的函数在数字上画上一个红色的圆圈。