Form 層級監控鍵盤輸入內容,並決定對應動作。
1. Form 的屬性KeyPreview 設定為True
2. Form 的事件 KeyDown 中撰寫相關處理程序
private void FrmA01A021A_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode==Keys.Escape)
{
txtOrderKey.SelectAll();
txtOrderKey.Focus();
}
}