|
C# and WPF
I am trying to make an application, and I want to have a menu at the top, and then when i click on lets say Start on the menu bar, it changes the window, so that it still has the menu at the top but everything else has changes. I dun want to remake the window, and i dun want to have all of the things in code and just change the visibility.
here is what i thought would work, creating UserControls and then change the UserControl.
UserControl replace = new CreatePage();
this.C = replace;
CreatePage is a page that asks for a bunch of items. Please let me know what i should do.
I do not get any sort of error, but nothing actually changes. Thanks for everyone helps
|