我有ListView(vsReport)和StringGrid,我想要的是如果我点击ListView中的某个元素,StringGrid中的特定单元格必须更改颜色。我该怎么做?
路径填充1(向上移动)和0(向右移动),它从左下角开始,到右上角结束,我必须为这些单元格着色。
感谢您的回答,我处理了我的问题,但还有一个小问题,如何在单元格中显示文本? FillRect填充整个单元格。
procedure TForm1.ListView1SelectItem(Sender: TObject; Item: TListItem; Selected: Boolean);
var aRect: TRect;
a,x,y:integer;
path:string;
begin
path:=ListView1.Items[Item.Index].Caption;
x:=0;
y:=StringGrid1.RowCount;
for a := 0 to length(path) do
begin
if path[a]='1' then y:=y-1 else x:=x+1;
aRect := StringGrid1.CellRect(x-1,y-1);
StringGrid1.Canvas.Brush.Color := clBlue;
StringGrid1.Canvas.FillRect(aRect);
end;
end;
答案 0 :(得分:6)
OnDrawCell
处理程序(参见步骤3)提供的特定坐标,Objects
属性时,可以通过将颜色与TObject
进行类型转换来使用此属性进行颜色存储。如果您需要帮助,请大声喊。OnDrawCell
事件处理程序中绘制彩色单元格(在需要帮助的情况下,在此处搜索 [Delphi] StringGrid OnDrawCell 的Stack Overflow)。OnSelectItem
事件公开了单击或以其他方式选择的项目。StringGrid.Repaint
即可。