내 양식에 인쇄 화면 키를 감지하기 위해 노력하고있어,하지만 키 PRTSC 및 SysRq를처럼 KeyDown
이벤트가 발생하지 않습니다 ..Form_Keydown 이벤트가 작동하지 않습니다
private void Form1_KeyDown(object sender, KeyEventArgs e)
{
// Trying to detect if it fires KeyDown, but it doesn't
MessageBox.Show(e.KeyValue.ToString());
}
나는 그것을 알아낼 수는, 어쩌면 내가
[인쇄 화면 키를 어떻게 캡처합니까?] (http://stackoverflow.com/questions/1191479/how-do-i-capture-the-print-screen-key) – user287107