I wanted to hide the main window of my app on startup, so I put this in the constructor:
this.Hide();
This doesn\'t hide my form though. It
If you would rather use this.Hide or this.Show you can do this
protected override void OnShown(EventArgs e) { base.OnShown(e); this.Hide(); }