在c#中的TREEVIEW中添加复选框
我想将复选框添加到我的应用程序的树视图中某个父节点的子节点...我应该如何添加它?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
TreeView
有一个名为CheckBoxes
的属性,如果设置为true
,它将显示所有子节点的复选框。TreeView
has a property with the nameCheckBoxes
, if set totrue
, it shows checkboxes for all child nodes.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/
您不能仅显示某些
TreeNode
的复选框 - 只能显示所有的复选框或根本不显示复选框。要启用树的复选框,请设置 < code>CheckBoxes 属性设置为
true
。You can't show checkboxes only for some
TreeNode
s - only for all of them or none at all.To enable the checkboxes for your tree set the
CheckBoxes
property totrue
.