CUDA_Manager.Form1.trayIcon_MouseDoubleClick C# (CSharp) Method

trayIcon_MouseDoubleClick() private method

private trayIcon_MouseDoubleClick ( object sender, MouseEventArgs e ) : void
sender object
e MouseEventArgs
return void
        private void trayIcon_MouseDoubleClick(object sender, MouseEventArgs e)
        {
            this.Show();
            this.WindowState = FormWindowState.Normal;
            this.Activate();

            debugbox.SelectionStart = debugbox.TextLength;
            debugbox.ScrollToCaret();
        }