本文介绍了在 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?
推荐答案
TreeView
有一个名为 CheckBoxes
的属性,如果设置为 true
>,它显示所有子节点的复选框.
TreeView
has a property with the name CheckBoxes
, if set to true
, it shows checkboxes for all child nodes.
这篇关于在 C# 中的 TREEVIEW 中添加复选框的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!