DELPHI TLISTVIEW控件里添加背景色


本文整理自网络,侵删。

 

//....某一行

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 如何将颜色值转换为html格式?

Delphi 闪盘小偷

Delphi 判断窗体是否创建 存在

incyear:将一个tdatetime变量加减一定数量的年数

Delphi 进程通讯之wm_copydata 发送程序(senddata.exe)

Delphi中简单的调用单元unit实例

Delphi 字符串替换

Delphi ios取设备唯一值

Delphi sysutils.comparestr、sysutils.comparetext - 字符串比较

firemonkey下使用stylebook的一些经验

更多相关阅读请进入《Delphi》频道 >>



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...