ACPAddIn.Notification.showWithTimer C# (CSharp) Méthode

showWithTimer() public méthode

public showWithTimer ( int second ) : void
second int
Résultat void
        public void showWithTimer(int second)
        {
            Show();

            this.Opacity = 0;

            fadeInTimer.Stop();
            fadeInTimer.Interval = 18;
            fadeInTimer.Start();

            timer.Stop();
            timer.Interval = second * 1000;
            timer.Start();
        }