全局禁用 cmd+tab 应用程序切换器
我希望能够禁用使用命令选项卡激活的默认应用程序切换器,以将其替换为我自己的。
我在这个答案中看到我可以使用这样的调用来禁用切换器:
OSStatus status = SetSystemUIMode (kUIModeContentSuppressed,
kUIOptionDisableProcessSwitch);
但这仅在我的应用程序是活动的最前面的应用程序时才有效,当然它不会。 那么是否有另一种方法来捕获这些击键,或者是否有一种方法可以使我的应用程序保持活动状态但仍然传递击键(也许使用全屏透明窗口)?
I'd like to be able to disable the default app switcher which is activated with command-tab to replace it with my own.
I've seen in this answer that I can use a call like this to disable the switcher:
OSStatus status = SetSystemUIMode (kUIModeContentSuppressed,
kUIOptionDisableProcessSwitch);
But this only works whilst my app is the active front most app, which of course it wont be.
So is there another way to capture these keystrokes, or is there a way to keep my app active but still pass keystrokes through (maybe with a fullscreen transparent window)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能,而且有充分的理由;它将成为恶意编码者攻击的载体。
You can't, and for good reason; it would be a vector for attack by a malicious coder.