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