System.Windows.Forms.HexBox.ActivateKeyInterpreter C# (CSharp) 메소드

ActivateKeyInterpreter() 개인적인 메소드

private ActivateKeyInterpreter ( ) : void
리턴 void
        void ActivateKeyInterpreter()
        {
            if(_ki == null)
                _ki = new KeyInterpreter(this);

            if(_ki == _keyInterpreter)
                return;

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

            _keyInterpreter = _ki;
            _keyInterpreter.Activate();
        }