CK.Plugins.CommonTimerWindow.CommonTimerWindow.Timer_Tick C# (CSharp) Method

Timer_Tick() private method

private Timer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void Timer_Tick(object sender, EventArgs e)
        {
            ticks++;
            if (ticks >= Multiple)
            {
                HeartBeatAnimation.Begin();
                ticks = 0;
            }
        }