Example #1
0
        public void KeyPressed(ConsoleKeyInfo key)
        {
            if (key.Key == ConsoleKey.Escape)
            {
                this.CloseWindow();
            }

            if (key.Key == ConsoleKey.Enter)
            {
                this.CloseWindow();
                EnterEntered();
            }


            _value.KeyPressed(key);
        }