Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想基本上吸收按键。
我目前正在我的主窗体上使用键预览,并且有一个按键事件处理程序,用于检查是否按下了 windows 键。有没有办法防止按键离开应用程序并打开开始菜单?
特定控件有一个选项可以抑制按键,有没有办法抑制对 Windows 的按键?
几个地方开始寻找:
SetWindowsHookEx
在应用程序外部拦截键盘事件的唯一方法是使用 P/Invoke SetWindowsHookEx。这将为与焦点应用程序无关的键盘事件设置全局回调。