Mono.Terminal.Dialog.ProcessKey C# (CSharp) Method

ProcessKey() public method

public ProcessKey ( int key ) : bool
key int
return bool
        public override bool ProcessKey(int key)
        {
            if (key == 27){
                Running = false;
                return true;
            }

            return base.ProcessKey (key);
        }