CheckedListBox中的第二级

时间:2016-10-06 10:52:54

标签: c# .net

我在创建"第二级"时遇到了一些问题。 CheckedListBox。

示例:

这是我的CheckedListBox:

enter image description here

此代码:

 checkedListBox_materiałyDoRozliczenia.DataSource = dataTableMaterials;
 checkedListBox_materiałyDoRozliczenia.DisplayMember = "material";

为此,我将dataTable绑定为checkedListBox的DataSource。

我想要完成的事情是这样的:

enter image description here

如你所见,有第二级"。 当元素被检查时,我想要这个"第二级"出现。 DataSource用于此"第二级"将是另一个DataTable。

你能帮我解决这个问题吗?

甚至可以这样做吗?

1 个答案:

答案 0 :(得分:2)

您正在寻找的东西称为" TreeView" 树视图看起来像这样:
enter image description here

您只想为子项添加复选框(树状视图中的项目) 对此有一个很好的documentation,或asp.net youtube video

Codeproject还有interactive demo,其中包含源代码。