In the entry form of my wpf application, I have a list of buttons where the user can select where he wants to do, eg. enter new customer, run report...
What is the best way to show the form (e.g enter new customer) after the user selection? I don't want the form to be a pop up. Also hiding the current work and show the next form will not work, because the wpf application is hosted inside the window32 app.
My guess is to build each of the functionality in user control. on the entry page, load all the user contorls in XAML, but hide them. Show the respectively user control when the user selects it.
Since I am new to WPF, i am not sure if this is the way to do it. it seems like there's overhead on loading all the controls.
Thanks for your help.
Angela