OpenTween.TweenMain.NotifyIcon1_BalloonTipClicked C# (CSharp) Method

NotifyIcon1_BalloonTipClicked() private method

private NotifyIcon1_BalloonTipClicked ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void NotifyIcon1_BalloonTipClicked(object sender, EventArgs e)
        {
            this.Visible = true;
            if (this.WindowState == FormWindowState.Minimized)
            {
                this.WindowState = FormWindowState.Normal;
            }
            this.Activate();
            this.BringToFront();
        }
TweenMain