x86.frmMain.notifyIcon1_MouseDown C# (CSharp) Method

notifyIcon1_MouseDown() private method

private notifyIcon1_MouseDown ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        private void notifyIcon1_MouseDown(object sender, MouseEventArgs e)
        {
            if (e.Button == MouseButtons.Right)
            {
                this.notifyIcon1.ContextMenuStrip = contextMenuStrip1;
            }

        }
        private void close_MouseDown(object sender, MouseEventArgs e)
frmMain