需要实现:在选中节点的时候,右侧编辑框显示所选的节点名字。
但是在选中父节点的时候(即子节点全选的状态),右边的编辑框只显示父节点名字,不显示子节点的,如上图。
请问这种需求如何实现呢?
Delphi/Pascal code12345678 if TV.selected=nil then exit; if TV.selected.level=0 then Edit1.text:=TV.selected.text else if TV.selected.parent.stateindex=2 then Edit1.text:=TV.selected.parent.text else Edit1.text:=TV.selected.text