123456789101112131415161718192021222324252627282930313233 |
- 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();
- }
- }
- }
|