如何使用 C#4.0 Win Form 应用程序隐藏 TreeView 控件中某个 TreeNode 的复选框?
在我的 C# Windows 窗体应用程序中,我有带有复选框的 Treeview 控件。
我想对用户隐藏 TreeView 控件中某个树节点的复选框。我该怎么做?
请指导我摆脱这个问题......
In my C# Windows Form Application, I have Treeview control with checkboxes.
I want to hide check box of the certain tree node in TreeView control from user.How i do it?.
Please Guide me to get out of this issue...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
本文介绍了如何您可以隐藏树视图中某个节点的复选框。
更新
文章中的说明和代码:
目前,没有内置支持来完成此操作。但我们可以发送
向树形视图控件发送 TVM_SETITEM 消息,设置 TVITEM 结构的状态
字段设置为 0,TVITEM 的 hItem 字段设置为树节点的句柄。那么这个
树节点将被去掉复选框。
下面列出了示例代码:
此代码隐藏了所选树节点的复选框,它在我的设备上运行良好
边。您可以复制并粘贴到您的项目中进行测试。
This article explains on how you can hide the checbox of a certain node in a treeview.
Update
Explanation and code from the article:
Currently, there is not build-in support to get this done. But we can send
a TVM_SETITEM message to the treeview control, set TVITEM structure's state
field to 0, and TVITEM's hItem field to the treenode's handle. Then this
treenode will be got rid of the checkbox.
Sample code lists below:
This code hides the selected treenode's checkbox and it works well on my
side. You may copy and paste in your project to have a test.