本文实例讲述了C#控制键盘按键的常用方法。分享给大家供大家参考。具体实现方法如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
name
本文实例讲述了C#检查键盘大小写锁定状态的方法。分享给大家供大家参考。具体分析如下:
1、命名空间:
using System.Runtime.InteropServices;
2、导入方法
[DllImport(user32.dll, EntryPoint = GetKeyboardState)]
public static extern int GetKeyboardState(byte[] pbKeyState);
3、大小写状态
public static bool CapsLoc