Keys.X : Keys « System.Windows.Forms « C# / C Sharp by API






Keys.X

 
using System;
using System.Drawing;
using System.Windows.Forms;
   
class ExitOnX: Form
{
     public static void Main()
     {
          Application.Run(new ExitOnX());
     }
     public ExitOnX()
     {
          Text = "Exit on X";
     }
     protected override void OnKeyDown(KeyEventArgs kea)
     {
          if (kea.KeyCode == Keys.X)
               Close();
     }
}

   
  








Related examples in the same category

1.Keys.Control
2.Keys.Escape