如何创建具有正负和复选框的 Treeview(+/-) [关闭]

Posted

技术标签:

【中文标题】如何创建具有正负和复选框的 Treeview(+/-) [关闭]【英文标题】:How to create Treeview(+/-) having plus and minus and also having checkbox [closed] 【发布时间】:2019-12-10 17:20:58 【问题描述】:

我正在设计部分,我想创建加/减树视图结构并具有复选框。

【问题讨论】:

【参考方案1】:

一种选择是在列表中使用列表,每个列表前面都有复选框,您可以在 CSS 中使用+,这意味着紧随其后。

input[type=checkbox] + ol 
  /* style when you want the ol to be collapsed */
  /* could be as simple as display none */

input[type=checkbox]:checked + ol 
  /* style when you want the ol to be expanded */
  /* could be as simple as display block */

【讨论】:

以上是关于如何创建具有正负和复选框的 Treeview(+/-) [关闭]的主要内容,如果未能解决你的问题,请参考以下文章

TreeView与CheckBoxes WPF

如何给TreeView中的每一项加上可复选框的CheckBox?

如何在C#Winform窗体的Treeview上面添加CheckBox复选框

如何的制作带有多选框的treeview?

如何更改树视图中复选框的默认图形大小?

如何在Vuejs Treeview中添加复选框并链接到模型?