Posted on 2005-11-12 09:18
貝殼兒 阅读(2379)
评论(1) 编辑 收藏 引用 所属分类:
Delphi编程
看到一些財務軟件的科目樹狀結構中.經常抓取子科目時,也會把父科目的文本也加上,顯示出來,
研究了幾個小時,終於得出.
var
S:string;
aNode:TcxTreeListNode;
i:Integer;
begin
aNode:=cxDBTreeList1.FocusedNode;
for i:=aNode.Level downto 0 do
begin
if i=cxDBTreeList1.FocusedNode.Level then
S:=aNode.Values[1]
else
S:=aNode.Values[1]+'->'+S;
aNode:=aNode.Parent;
end;
ShowMessage(S);
end;