System.Windows.Forms.HexBox.ActivateKeyInterpreter C# (CSharp) Méthode

ActivateKeyInterpreter() private méthode

private ActivateKeyInterpreter ( ) : void
Résultat void
        void ActivateKeyInterpreter()
        {
            if(_ki == null)
                _ki = new KeyInterpreter(this);

            if(_ki == _keyInterpreter)
                return;

            if(_keyInterpreter != null)
                _keyInterpreter.Deactivate();

            _keyInterpreter = _ki;
            _keyInterpreter.Activate();
        }