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--;
            }
        }