나는 다음을 시도했다 :
private void Form1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
if ((Keys) e.KeyValue == Keys.Escape)
this.Close();
}
하지만 작동하지 않습니다.
그런 다음 이것을 시도했습니다.
protected override void OnKeyDown(KeyEventArgs e)
{
base.OnKeyDown(e);
if (e.KeyCode == Keys.Escape)
this.Close();
}
그리고 여전히 아무것도 작동하지 않습니다.
내 Windows Forms 양식 속성의 KeyPreview가 true로 설정되어 있습니다 ... 내가 뭘 잘못하고 있니?