Totally new to Silverlight (and XAML), but a long-time c# developer. I am building an app that will look similar to this:
Basically the user clicks on a node in the tree (Panel 1) and new content appears in Panel 3.
In Winforms, I would have just built a UserControl for each node and just swap the Panel 3 based on the node clicked. But I am pretty sure there is something better out there for Silverlight.
So how do I architect this puppy?
I should add one thing...I am on a tight schedule and don't have time to build complicated frameworks. The solution must be simple to grok for both me and the person who ends up maintaining the app.