当前位置:  开发笔记 > 编程语言 > 正文

使用TTreeview作为菜单

如何解决《使用TTreeview作为菜单》经验,为你挑选了1个好方法。

我使用delphi的ttreeview作为'选项'菜单.我将如何在运行时选择下一个节点,如上一个和下一个按钮?我尝试了getprev和getnext方法,但没有运气.



1> John Thomas..:

在这里你有'下一步'的行为.对于'上一页',我将为您留下锻炼:--)

procedure TForm8.btn1Click(Sender: TObject);  
var  
  crt: TTreeNode;

begin
  with tv1 do //this is our tree
  begin
    if Selected=nil then
      crt:=Items[0] //the first one
    else
      crt:=Selected.GetNext; //for previous you'll have 'GetPrev' 

    if crt<>nil then //can be 'nil' if we reached to the end
      Selected:=crt;
  end;
end;

HTH

推荐阅读
罗文彬2502852027
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有