我在数据库 ItemList 中有一个表,其中包含带有 ItemID 的 ProdutID。
ProductID ItemID
AAA 1001
AAA 1002
AAA 1003
BBB 1201
BBB 1293
CCC 1040
DDD 2011
DDD 3203
我想将所有这些数据添加到 Treeview 像这样:
+AAA
- 1001
- 1002
- 1003
+BBB
- 1201
- 1293
+CCC
- 1040
+DDD
- 2011
- 3203
请教我如何做到这一点。谢谢。
编辑 :
我尝试使用长度为 2 的数据(ProductID,ItemID)将每个项目添加到 ArrayList
for(int i=0;i<arrayList.count;i++)
{
TreeNode treeNode = new TreeNode(((string[])arrayList[i])[0]);
treeview1.Nodes.Add(treeNode);
}