我的Esc鍵盤事件似乎沒有被解僱。Esc鍵盤事件沒有在winforms中被解僱
我有兩種形式。
在Form1的按鈕單擊事件
Form2 frm2 = new Form2();
frm2.show();
在形式上2我有一個事件稱爲
private void frm2_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Escape)
this.Hide();
}
什麼問題呢?
可能重複http://stackoverflow.com/questions/2290959/escape-button - 關閉winform-in-c-sharp) – 2013-03-29 06:59:54