本文介绍了我如何才能找到在.NET中的NumLock,CapsLock键和ScrollLock键的状态?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何才能找到在.NET中的NumLock,CapsLock键和ScrollLock键键状态?

How can I find the state of NumLock, CapsLock and ScrollLock keys in .net ?

推荐答案

导入WinAPI的功能函数GetKeyState

Import the WinAPI function GetKeyState

[DllImport("user32.dll", CharSet = CharSet.Auto, ExactSpelling = true, CallingConvention = CallingConvention.Winapi)]
public static extern short GetKeyState(int keyCode);

,然后你可以使用它像

and then you can use it like that

bool CapsLock = (((ushort)GetKeyState(0x14)) & 0xffff) != 0;
bool NumLock = (((ushort)GetKeyState(0x90)) & 0xffff) != 0;
bool ScrollLock = (((ushort)GetKeyState(0x91)) & 0xffff) != 0;

编辑:上面的是框架1.1,为框架2.0 +你可以使用

the above is for framework 1.1, for framework 2.0 + you can use

<$c$c>Control.IsKeyLocked

这篇关于我如何才能找到在.NET中的NumLock,CapsLock键和ScrollLock键的状态?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-15 11:03