本文整理自网络,侵删。
//....某一行
procedure TForm1.ListView1CustomDrawItem(Sender: TCustomListView;
Item: TListItem; State: TCustomDrawState; var DefaultDraw: Boolean);
begin
with ListView1.Canvas.Brush do
begin
case Item.Index of
0: Color := clYellow;
1: Color := clGreen;
2: Color := clRed;
end;
end;
end;
//..某一列、某一格
procedure TForm1.ListView1CustomDrawSubItem(Sender: TCustomListView;
Item: TListItem; SubItem: Integer; State: TCustomDrawState;
var DefaultDraw: Boolean);
begin
inherited;
with lv3.Canvas.Brush do begin
case SubItem of
3:begin
color:=clYellow;
end else begin
color:=clWhite;
end;
end;
end;
end;
相关阅读 >>
Delphi winapi: getfocus - 获取当前拥有焦点的窗口的句柄
Delphi fdconnection取得excel工作表名
Delphi 从 twebbrowser中获得当前输入处的链接
Delphi 消息实现窗口最小化,最大化,关闭(Delphi)
更多相关阅读请进入《Delphi》频道 >>