作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用以下 RegisterHotKey
函数,我可以全局挂接普通的键修饰符组合:
[DllImport("user32.dll")]
private static extern bool RegisterHotKey(IntPtr hWnd, int id, uint fsModifiers, uint vk);
有关它的精彩文章和完整的源代码:http://www.liensberger.it/web/blog/?p=207
但问题是,我如何连接媒体键,即键盘和电脑 Remote 中的播放/暂停/下一曲/上一曲键?我用谷歌搜索了又搜索,但没有任何运气。
最佳答案
使用 System.Windows.Forms.Keys.MediaPlayPause
、System.Windows.Forms.Keys.Play
等值作为 vk 参数(将其转换为 uint 后)和 0 用于 fsModifiers(除非您想注册 Shift-Play、Alt-Play或其他组合键)。
关于c# - C# 中 mediakeys 的全局键钩,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25951955/
我是一名优秀的程序员,十分优秀!