4
我目前使用此代碼在我的樹的OnBeforeCellPaint事件:顏色VirtualStringTree行與隱藏節點
if Node.Index mod 2 = 0 then
begin
TargetCanvas.Brush.Color := clBlack;
TargetCanvas.FillRect(CellRect);
end
else
begin
TargetCanvas.Brush.Color := clPurple;
TargetCanvas.FillRect(CellRect);
end;
顏色我的節點。 但由於索引保持不變,隱藏節點不起作用。 有沒有可見的索引或簡單的解決方法?
在此先感謝。