C#检查键盘大小写锁定状态的方法
程序员文章站
2022-07-01 17:34:44
本文实例讲述了c#检查键盘大小写锁定状态的方法。分享给大家供大家参考。具体分析如下:
1、命名空间:
using system.runtime.interops...
本文实例讲述了c#检查键盘大小写锁定状态的方法。分享给大家供大家参考。具体分析如下:
1、命名空间:
using system.runtime.interopservices;
2、导入方法
[dllimport("user32.dll", entrypoint = "getkeyboardstate")] public static extern int getkeyboardstate(byte[] pbkeystate);
3、大小写状态
public static bool capslockstatus { get { byte[] bs = new byte[256]; getkeyboardstate(bs); return (bs[0x14] == 1); } }
4、引用,此部分根据你的需要来修改
private void button2_click(object sender, eventargs e) { if (capslockstatus == true) messagebox.show("键盘处于大写锁定状态!"); else messagebox.show("键盘处于小写状态!"); }
希望本文所述对大家的c#程序设计有所帮助。