I’ve been asked to create a new control for a feature that we need, I’m really struggling on how to best achieve this in a generic and flexible way.
basically the control is very similar to a tree view, where as you would click on a node and then its children would then appear underneath that node.
for this control, they want it like this – when you click on a node, its children are then displayed on the left of parents container and so on.
I’ve done a quick (super quick) diagram in paint… (please don’t laugh, its terrible! 🙂 )

So you should just start with a single list of items and then progressive through the children of the selected item..
so my question is really, where do you start on something like this.. ? I’m fine with the data side but the XAML is the bit that’s really confusing me, it needs to be very generic so it could potential cope with 100’s of children panels
any help would be brilliant.
cheers.
ste.
If you are after a usercontrol and known bindings at designtime – it would be easy, but as a custom control – i’m very interested in good answers
like i said this can easy be done if you know the collection bindings and the childlevel. but its maybe a start to get a custom control.