搜尋此網誌

2011年7月8日 星期五

C# 鍵盤 KeyChar 值的取得

代碼:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
     char Key_Char = e.KeyChar;//判斷按鍵的 Keychar
     MessageBox.Show(((int)(Key_Char)).ToString());//轉成整數顯示
}

Result:
Key Char
1 2 3 4 5 6 7 8 9 0 Enter a
49 50 51 52 53 54 55 56 57 58 13 97
 
Sample Code

代碼:
if (e.KeyChar == Convert.ToChar(13))
{
      //Do Something;
}

沒有留言:

張貼留言