如何使用复选框选项禁用 C# Winform Treeview 控件中的特定复选框?
可能的重复:
TreeView 删除某些节点的复选框
在我的 C# Windows 窗体应用程序中,我有 Treeview使用复选框进行控制。
我想阻止用户检查特定节点的复选框。如何阻止用户检查特定的内容?
Possible Duplicate:
TreeView Remove CheckBox by some Nodes
In my C# Windows Form Application, I have Treeview control with checkboxes.
I want to prevent the user from checking particular nodes' checkboxes. How can stop the user from being able to check particular ones?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TreeView.AfterCheck 事件 是其中之一防止检查节点的选项。我发现这是一种简单的方法。但可以有更好的方法。
编辑
隐藏复选框。请查看此处科迪·格雷的回答。
TreeView.AfterCheck Event is one option to prevent checking nodes. I find this is an easy way of doing it. But there can be better ways.
Edit
To hide the checkboxes. Look at Cody Gray's answer here.