I have created two WindowSurface (WPF), and I want to navigate betwen them.
I've created a simple button with the following code :
SurfaceWindow2 sw2 = new SurfaceWindow2();
sw2.Show();
This on displays the second SurfaceWindows but in a new Window.
What I want to do is : Host for example many SurfaceWindow in a root one, so I can show or hide them easily.
Any help ?