در زبان برنامه نویسی سی شارپ چطور میشه به کاراکتر های صفحه کلید دسترسی داشت.مثلا در رویداد key press
[COLOR="Gray"] public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();[/COLOR]
KeyPreview = true;
KeyPress += new KeyPressEventHandler(Form1_KeyPress);
[COLOR="Gray"] }[/COLOR]
void Form1_KeyPress(object sender, KeyPressEventArgs e)
{
[COLOR="Blue"] MessageBox.Show(string.Format("Key {0} ({1}) Pressed.", e.KeyChar.ToString(), (int)e.KeyChar));[/COLOR]
}