CK.WindowManager.WindowAutoBinder._activationTimer_Tick C# (CSharp) Method

_activationTimer_Tick() public method

public _activationTimer_Tick ( object sender, EventArgs e ) : void
sender object
e System.EventArgs
return void
        void _activationTimer_Tick( object sender, EventArgs e )
        {
            try
            {
                if( _bindResult != null )
                {
                    //Console.WriteLine( "Elapsed OnPointerButtonUp Seal !" );
                    _bindResult.Seal();
                }
            }
            finally
            {
                _bindResult = null;
                _activationTimer.Stop();
                _activationTimer = null;
            }
        }