Mono.Terminal.Dialog.ProcessKey C# (CSharp) Méthode

ProcessKey() public méthode

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

            return base.ProcessKey (key);
        }