C# 判断大小写是否按下

1.
        [DllImport("user32.dll", EntryPoint = "GetKeyboardState")]

        public static extern int GetKeyboardState(byte[] pbKeyState);

//大小写状态

         byte[] bs = new byte[256];
         GetKeyboardState(bs);
         if(bs[0x14] == 1);
 {
                MessageBox.Show("按下");
 }


2.
        [DllImport("USER32", SetLastError = true)]

        static extern short GetKeyState(int nVirtKey);

      //大小写状态
        if (GetKeyState(20) == 1)
            {
                MessageBox.Show("按下");

            }

3.
      //大小写状态
        if (IsKeyLocked(Keys.CapsLock))
            {
                MessageBox.Show("按下");

            }



http://download.csdn.net/detail/z397164725/4159719调用小键盘下载



你可能感兴趣的:(C# 判断大小写是否按下)