x86.frmMain.notifyIcon1_MouseClick C# (CSharp) Method

notifyIcon1_MouseClick() private method

private notifyIcon1_MouseClick ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        private void notifyIcon1_MouseClick(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Left)
            {
                this.Visible = true;

                this.WindowState = FormWindowState.Normal;

                this.notifyIcon1.Visible = true;
            }
        }
        private void show_MouseDown(object sender, MouseEventArgs e)
frmMain