运行期间在树列表中添加新根

发布于 2024-09-27 22:13:32 字数 137 浏览 1 评论 0原文

嗨,

我正在使用 xtratreelist。在此我创建了一个未绑定的树列表。

我在表单中添加了一个按钮。现在我需要该按钮发挥作用,这样当我单击该按钮时,它应该在树列表中添加一个新的根。它是如何完成的..请从基本的方面帮助我...

Hii

I am using xtratreelist.In this i have created an unbound treelist.

I added a button in the form.Now i need the button to function such that when i click on the button it should add a new root in the treelist.how it can be done..please help me from the basic please...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

你げ笑在眉眼 2024-10-04 22:13:32

以下是如何:在代码中以未绑定模式创建节点中的代码,展示了如何创建根节点:

TreeListNode parentForRootNodes = null;
    TreeListNode rootNode = tl.AppendNode(
        new object[] { "Alfreds Futterkiste", "Germany, Obere Str. 57", "030-0074321" }, 
        parentForRootNodes);

Here is the code from How to: Create Nodes in Unbound Mode in Code showing how to create a root node:

TreeListNode parentForRootNodes = null;
    TreeListNode rootNode = tl.AppendNode(
        new object[] { "Alfreds Futterkiste", "Germany, Obere Str. 57", "030-0074321" }, 
        parentForRootNodes);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文