I'm fairly new to WPF and I have this scenario:
I have an application that contains an area where different sets of controls should be displayed at different time(different application states).
I'm wondering what is the approach in WPF?
In winforms I would make controls visible/invisible at runtime. If there were too many controls I would group them on Panels/UserControls and show/hide those.
My gut tells me there is a better way in WPF.