在c#中的TREEVIEW中添加复选框

发布于 2024-11-08 17:52:33 字数 65 浏览 0 评论 0原文

我想将复选框添加到我的应用程序的树视图中某个父节点的子节点...我应该如何添加它?

i want to add the check box to the child node of a certain parent node in the tree view in my application...How should i add it?

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

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

发布评论

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

评论(3

喵星人汪星人 2024-11-15 17:52:33

TreeView 有一个名为 CheckBoxes 的属性,如果设置为 true,它将显示所有子节点的复选框。

TreeView has a property with the name CheckBoxes, if set to true, it shows checkboxes for all child nodes.

走走停停 2024-11-15 17:52:33

TreeView API 只允许您添加/删除每个节点的复选框。如果这就是您想要的,那么答案很简单 - 使用 TreeView 的 CheckBoxes 属性。

如果您只需要树中特定节点的复选框,那么事情就会变得棘手。 .NET 并不直接支持这一点。您可以使用 Win32 消息覆盖让树接受它,请参阅下面的链接以获取其他地方的解决方案:

http://dotnetfollower.com/wordpress/2011/05/winforms-treeview-hide-checkbox-of-treenode/

The TreeView API only allows you to add/remove checkboxes for EVERY node. If that's what you want, then the answer is easy - use the TreeView's CheckBoxes property.

If you want a checkbox for a particular node in the tree only, then it gets tricky. .NET doesn't directly support that. You can get the tree to accept it using Win32 message overrides, see the link below for a solution elsewhere:

http://dotnetfollower.com/wordpress/2011/05/winforms-treeview-hide-checkbox-of-treenode/

清晨说晚安 2024-11-15 17:52:33

您不能仅显示某些 TreeNode 的复选框 - 只能显示所有的复选框或根本不显示复选框。
要启用树的复选框,请设置 < code>CheckBoxes 属性设置为 true

You can't show checkboxes only for some TreeNodes - only for all of them or none at all.
To enable the checkboxes for your tree set the CheckBoxes property to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文