-
August 31st, 2020, 03:49 PM
#1
From MainWindow to A new Window?
I would like to load a new window?
In unity3d we used SceneLoad so we could go from scene 1 to scene 2 and it was awesome , in wpf the ways that i found is just a window pop up and that's something i dont want.
for example this is not good for me ->
Code:
RestaurantMenu.Test secW = new RestaurantMenu.Test();
this.Visibility = Visibility.Hidden;
secW.Show();
I dont know if that helps but like the tab control system it stays the same shows different stuff
Last edited by TheUninvited; August 31st, 2020 at 04:37 PM.
-
August 31st, 2020, 10:04 PM
#2
Re: From MainWindow to A new Window?
Did you try the tab approach?
-
September 1st, 2020, 03:28 AM
#3
Re: From MainWindow to A new Window?
 Originally Posted by Arjay
Did you try the tab approach?
I think it would be really unprofesionnal to do it with the tab approach.
Because we are talking about navigate from a window to an other window and it does not seem that way. Plus i can't think of a way to do it with tab control.
-
September 1st, 2020, 03:46 PM
#4
Re: From MainWindow to A new Window?
-
September 1st, 2020, 07:08 PM
#5
Re: From MainWindow to A new Window?
 Originally Posted by TheUninvited
I think it would be really unprofesionnal to do it with the tab approach.
Because we are talking about navigate from a window to an other window and it does not seem that way. Plus i can't think of a way to do it with tab control.
Using tabs is unprofessional? That's a curious response.
-
September 2nd, 2020, 03:20 AM
#6
Re: From MainWindow to A new Window?
 Originally Posted by Arjay
Using tabs is unprofessional? That's a curious response.
You misundestood , i meant that using tabs for my case is not the best option
I shouldn't use tab control to load a window.
-
September 4th, 2020, 06:01 AM
#7
Re: From MainWindow to A new Window?
I figured it out using wpf multiple views.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|