如何以编程方式重命名树视图子节点的文本
大家好,我有一个树视图
,如下所示
Root
->Child1
->Child2
->Child3
->Child4
现在,如果我删除一个子节点,例如Child1
,那么我希望我的树视图
为以下
Root
->Child1
->Child2
->Child3
任何想法请...
Hi all i am having a tree view
as following
Root
->Child1
->Child2
->Child3
->Child4
Now if i remove a child node say Child1
then i would like to have my tree view
as follows
Root
->Child1
->Child2
->Child3
Any idea please...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果删除节点后需要重命名剩余的子节点,那么我将添加一个名为 RenameNodes 的方法,该方法接受从中删除子节点的父节点;您将在删除子节点后立即调用此方法。
If you need to rename the remaining child nodes after removing a node, then I would add a method called RenameNodes that accepts the parent node from which a child node was removed; you will call this method right after removing the child node.
尝试,
编辑:
Try,
EDIT: