private void axWindowsMediaPlayer1_KeyPressEvent(object sender, AxWMPLib._WMPOCXEvents_KeyPressEvent e) { if (e.nKeyAscii == (char)Keys.Escape) { this.Close(); MainScreen ms = new MainScreen(); ms.Show(); } }
private void VideoPlay_KeyPress(object sender, KeyPressEventArgs e) { if (e.KeyChar == (char)Keys.Escape) { this.Close(); MainScreen ms = new MainScreen(); ms.Show(); } }