you can use this line of code. It wont hide it, but it will be minimized:
this.WindowState = FormWindowState.Minimized;
in addition, if you don't want it showing on the task bar either, you can add this line:
this.ShowInTaskbar = false;
But why do you create the form if you don't want it to be visible in the first place?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…