2013-7-22判断键盘上某键抬起按下状态

[DllImport("user32.dll", CharSet = CharSet.Auto)]

public static extern short GetAsyncKeyState(int nVirtKey);

 

if (GetAsyncKeyState(40) < 0) //40为下箭头对应键asc码

{

}

posted on 2016-10-15 19:17  mol1995  阅读(380)  评论(0编辑  收藏  举报

导航