pocorall.SCM_Notifier.MainForm.notifyIcon_MouseClick C# (CSharp) Method

notifyIcon_MouseClick() private method

private notifyIcon_MouseClick ( object sender, MouseEventArgs e ) : void
sender object
e System.Windows.Forms.MouseEventArgs
return void
        private void notifyIcon_MouseClick(object sender, MouseEventArgs e)
        {
            if (e.Button != MouseButtons.Right)
            {
                ShowFolderList();
                ShowInTaskbar = Config.ShowInTaskbar;
            }
        }
MainForm