11,578 questions
If you do not have more than one Form1, then try one of solutions:
Form1 f1 = Application.OpenForms.OfType<Form1>( ).SingleOrDefault( );
if( f1 == null )
{
f1 = new Form1( );
f1.Show( );
}
else
{
if( f1.WindowState == FormWindowState.Minimized ) f1.WindowState = FormWindowState.Normal;
f1.Activate( );
}