From a091168c41171e7a93c7abc920beb2c01fefc4cc Mon Sep 17 00:00:00 2001 From: Alexander Date: Mon, 7 Jan 2019 12:04:49 +0200 Subject: [PATCH] Added the ability to close the "About" window by the "esc" button --- Crypto Notepad/AboutFrom.cs | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Crypto Notepad/AboutFrom.cs b/Crypto Notepad/AboutFrom.cs index 6459f4f..0614284 100644 --- a/Crypto Notepad/AboutFrom.cs +++ b/Crypto Notepad/AboutFrom.cs @@ -22,6 +22,16 @@ private void AboutFrom_Click(object sender, EventArgs e) { AppLogoPictureBox.Focus(); } + + protected override bool ProcessDialogKey(Keys keyData) + { + if (ModifierKeys == Keys.None && keyData == Keys.Escape) + { + Close(); + return true; + } + return base.ProcessDialogKey(keyData); + } /*Form Events*/