Resolved Console Screen

As far as I'm aware, it's not possible. A Console app is not a GUI app so it doesn't provide GUI behaviour. You can do this:
C#:
Console.SetWindowSize(Console.LargestWindowWidth, Console.LargestWindowHeight)
to make the Console window the size of the screen but there's no simple way to move the window and there's no simple way to genuinely maximise it. The Console app is aware of it's window position relative to its own buffer but not relative to the screen.
 
Back
Top Bottom