Lets say i have different types 'A','B','C' in my app
and I am trying to assign this below result of type 'A'
class A
{
List<B>
List<C>
}
to the tree view at any level. Can the tree view read all the list items of B and C from the object of type 'A'.
Something like this below:
+ B (parent tree view items)
- child tree view items
+ C (parent tree view items)
- child tree view items
Please help with any suggestions.
and I am trying to assign this below result of type 'A'
class A
{
List<B>
List<C>
}
to the tree view at any level. Can the tree view read all the list items of B and C from the object of type 'A'.
Something like this below:
+ B (parent tree view items)
- child tree view items
+ C (parent tree view items)
- child tree view items
Please help with any suggestions.