I am developing an application in Visual Studio using C# and WPF. I have made a basic structure of WPF Pages with navigation conntrols to move from one page to another. I can not make the Pages maximize on startup. I want to imitate this window behaviour
– WindowStyle = “None” – make window borderless
– WindowState = “Maximized” – make window fullscreen
Basicaly I want my Pages to go full screen without borders. I’m not able to resize them. I use Pages instead of windows because I am making a weblike offline desktop app and have a lot of different screens that go from one to another and I want them to be displayed in one “window” and not have the user open and close windows to pass from one screen to another.
I am developing an application in Visual Studio using C# and WPF. I have
Share
You could create a full screen window that contains a Frame for page navigation.
Get more info in Navigation Overview.