AForge.Controls.ManipulatorControl.timer_Tick C# (CSharp) Метод

timer_Tick() приватный Метод

private timer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
Результат void
        private void timer_Tick( object sender, EventArgs e )
        {
            if ( ticksBeforeNotificiation != -1 )
            {
                // time to notify
                if ( ticksBeforeNotificiation == 0 )
                {
                    // notify users
                    NotifyClients( );
                }

                ticksBeforeNotificiation--;
            }
        }