OpenTween.TweenMain.NotifyIcon1_BalloonTipClicked C# (CSharp) Méthode

NotifyIcon1_BalloonTipClicked() private méthode

private NotifyIcon1_BalloonTipClicked ( object sender, EventArgs e ) : void
sender object
e EventArgs
Résultat 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