This SHOULD be a very simple question but after lots of searching there seems to be no working example anywhere. I just want my XNA window to start off maximized. I know how
@Cyral has the closest answer so far, but it's still not quite what you want. To maximize a Windows Form, you use the WindowState property:
var form = (Form)Form.FromHandle(Window.Handle); form.WindowState = FormWindowState.Maximized;