using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ImpulseVision { public partial class FormViewPhoto : Form { public FormViewPhoto() { InitializeComponent(); } private void FormViewPhoto_KeyDown(object sender, KeyEventArgs e) { if(e.KeyCode == Keys.Escape) { this.Close(); } } private void PbxImage_Click(object sender, EventArgs e) { this.Close(); } } }