Hi. I'm doing some stuff in WPF.
I have a ComboBox
with many Types. After selecting a concrete type, I want to be able to Load a particular UserControl (with many TextBoxes etc.) respecting the type in a defined region on my WPF Window.
How to do that? Is there anything like
LoadControl()
and load it into a PlaceHolder
in ASP.NET? And what's the best way of doing this?
Thanks.