Currently, the form's opacity is 0%, so that when it loads, it should be invisible, but when the form loads, it's visible for a few seconds. Since the default opacity is set to 0% and the form's visibility is set to false before it's opacity is set back to 100%, I would think that the form should be invisible until I tell it to.
public FormMain()
{
InitializeComponent();
this.Visible = false;
this.Opacity = 1.00;
}
How can I make my form invisible as a default?