I have a windowless wpf application, whenever I set the window state as maximized it maximizes it on the primary display.
What I would like to do is have it maximize on
We cannot maximize the window until it's loaded. So by hooking the Loaded event of fullScreenWindow and handling the event along the lines of:
private void Window_Loaded(object sender, RoutedEventArgs e) { WindowState = WindowState.Maximized; }