ObjectListView - TreeListView expand different lists in tree structure
问题 I try to expand multiple lists in my tree structure. Let's say I have the following classes. I have the class Product, which contains a list with its children. This is my actual tree structure. class Product { int prodID; string prodName; List<Product> prodChildren; List<Article> articleList; //maybe further list... public int ProdID { get { return prodID;} set{prodID = value;} } public string ProdName { get { return prodName;} set {prodName = value;} } public Product(int id, string name) {