Hi,
I am binding a list of objects to a wingrid. My objects have two child collections of their own. These are both shown as a separate band in the grid.
Is it possible to ignore a child collection, so it doesn't appear in the grid?
grid.DisplayLayout.MaxBandDepth = 1
That won't do the trick, since it is a recursive object model:
List of A contains a List of A and a List of B, and so on.
I only want to see the lists of A.
Because of this recursive model, my Max. # of bands is unknown.