首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VC >

请教各位大牛,如果根据字符获得虚拟按键码

2013-04-12 
请问各位大牛,如果根据字符获得虚拟按键码啊比如我有一个字母‘a’ 得到他的虚拟键码65微软有这样的API吗 c

请问各位大牛,如果根据字符获得虚拟按键码啊
比如我有一个字母‘a’ 
得到他的虚拟键码65
微软有这样的API吗
 
"c",          67

"d",          68

"e",          69

"f",          70

然后我怎么知道大写的A对应的虚拟键码是多少啊。?
万分感谢!
[解决办法]
Encoding.ASCII.GetBytes
[解决办法]

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

        void Form1_KeyDown(object sender, KeyEventArgs e)
        {
            MessageBox.Show(e.KeyValue.ToString());
        }
    }

热点排行