Form Key Press action : Form Event « GUI Windows Form « C# / C Sharp






Form Key Press action

Form Key Press action
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Drawing.Drawing2D;

public class Form1 : System.Windows.Forms.Form{
   public Form1() {
      InitializeComponent();
   }
   private void InitializeComponent() {
      this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
      this.ClientSize = new System.Drawing.Size(292, 273);
      this.Name = "Form1";
      this.Text = "Form1";
      this.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.Form1_KeyPress);
   }

   static void Main() {
      Application.Run(new Form1());
   }

   private void Form1_KeyPress(object sender, System.Windows.Forms.KeyPressEventArgs e) {
      Console.WriteLine("Key Press");
   }
}



           
       








Related examples in the same category

1.Form Window event: closing, closed, load, activated, deactivated
2.Scrolling (AutoScrollMinSize)
3.OnInputLanguageChangedOnInputLanguageChanged
4.Form Focus eventForm Focus event
5.On Mouse Wheel
6.OnMouseEnter, OnMouseHover, OnMouseLeave event
7.OnKeyDown event
8.OnClick event
9.Form OnResize
10.Form OnMove event
11.Cancel EventCancel Event
12.Uncloseable eventUncloseable event
13.Bind key action to a form windowBind key action to a form window
14.Form window closing eventForm window closing event
15.Form window load eventForm window load event
16.Form resize and redrawForm resize and redraw
17.Form Mouse down actionForm Mouse down action
18.Form Paint event
19.Scroll Shapes