在 Delphi 11 Alexandria 的 Windows 10 中的 32 位 VCL 应用程序中,我有一个TRzShellTree
控件(来自 GetIt 中流行的 Konopka Signature VCL Controls 7.0 中的 Ray Konopka)。
我遍历TRzShellTree
控件的节点以将一些特定信息附加到每个节点的文本,从节点的文件夹路径中检索:
for Node in RzShellTree1.Items do
begin
//Node.FullPath? How to get the FULL PATH of the Node?
Node.Text := Node.Text + GetNodeInfoFromNodePath(Node);
end;
但是,我需要每个节点的完整路径来获取该信息。查看TRzShellTree
方法,似乎没有办法获得节点的完整路径。
那么如何从每个节点获取完整路径呢?