Difference between revisions of "Keyboard Input in Visual C"

From WLCS
(New page: # Select the Form and go to its Properties # Change the KeyPreview property to True # Add the following line of code to the '''public Form1()''' section: <source lang="csharp"> this.KeyDo...)
 
Line 3: Line 3:
 
# Add the following line of code to the '''public Form1()''' section:
 
# Add the following line of code to the '''public Form1()''' section:
  
<source lang="csharp">
+
<source lang="java">
 
this.KeyDown += new KeyEventHandler(Form1_KeyDown);
 
this.KeyDown += new KeyEventHandler(Form1_KeyDown);
 
</source>
 
</source>

Revision as of 13:37, 20 November 2009

  1. Select the Form and go to its Properties
  2. Change the KeyPreview property to True
  3. Add the following line of code to the public Form1() section:
this.KeyDown += new KeyEventHandler(Form1_KeyDown);

so it should look something like this:

public Form1()
{
    InitializeComponent();
    this.KeyDown += new KeyEventHandler(Form1_KeyDown);
}