AForge.Controls.ManipulatorControl.timer_Tick C# (CSharp) Method

timer_Tick() private method

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

                ticksBeforeNotificiation--;
            }
        }