XtraTreeList DevExpress
我正在使用 treelist.OptionsView.ShowCheckBoxes = true;但这在所有节点上显示复选框。我希望仅子节点显示 CheckBox 而不是父节点。有什么办法可以实现吗?
I am using treelist.OptionsView.ShowCheckBoxes = true; but that shows checkbox on all nodes. I want only child nodes to show CheckBox and not parent node. Any way to implement it ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这可以通过使用 CustomDrawNodeCheckBox 事件来完成。 在新的树列表复选框功能中隐藏父节点复选框展示了如何做到这一点实施的。
This can be done by using the CustomDrawNodeCheckBox event. The Hiding parent node checkboxes in new treelist checkbox feature shows how this can be implemented.
我认为这是不可能的。但是您可以使用 CustomDrawCaption 事件隐藏您不想显示的节点上的复选框。
I don't think it is possible. But you can use the CustomDrawCaption event to hide the checkbox on the node you don't want to show it.