Accord.Controls.ManipulatorControl.timer_Tick C# (CSharp) 메소드

timer_Tick() 개인적인 메소드

private timer_Tick ( object sender, EventArgs e ) : void
sender object
e EventArgs
리턴 void
        private void timer_Tick(object sender, EventArgs e)
        {
            if (ticksBeforeNotificiation != -1)
            {
                // time to notify
                if (ticksBeforeNotificiation == 0)
                {
                    // notify users
                    NotifyClients();
                }

                ticksBeforeNotificiation--;
            }
        }