G
Guest
Hi,
i've this code that minimize application to sys tray i managed to hide the
application to the sys tray but i don't know how to bring it up back by
double cliking the sys tray icon
this is the code for the hide
private void SysTrayIcon_MouseDoubleClick(object sender,
MouseEventArgs e)
{
if (this.WindowState == FormWindowState.Normal)
{
this.Hide();
}
i've this code that minimize application to sys tray i managed to hide the
application to the sys tray but i don't know how to bring it up back by
double cliking the sys tray icon
this is the code for the hide
private void SysTrayIcon_MouseDoubleClick(object sender,
MouseEventArgs e)
{
if (this.WindowState == FormWindowState.Normal)
{
this.Hide();
}