Would something like this work (if you used Visible = false in your resize method instead of Hide())?
private void notifyIcon1_MouseDoubleClick(object sender, MouseEventArgs e)
{
if(this.WindowState == FormWindowState.Minimized)
this.WindowState = FormWindowState.Normal;
this.Visible = true;
}
Last edited by jonsca; Jan 17th, 2010 at 9:36 am.
Reputation Points: 1165
Solved Threads: 578
Quantitative Phrenologist
Offline 4,271 posts
since Sep 2009