默认输入语言切换器如何在Windows中运行?

时间:2018-05-19 17:03:18

标签: windows windows-10 language-switching input-language

默认输入语言切换器侦听击键并更改任何应用程序的输入语言。怎么会发生?是否使用DLL注释,如https://stackoverflow.com/a/1261532/258483中的评论所述,或者还有其他方法吗?

1 个答案:

答案 0 :(得分:0)

I'm not sure that's how the switcher does this, but if you want to do something similar for your application, you can use RegisterHotKey中单击按钮后,未将模拟功能标识为已调用。

BOOL RegisterHotKey(
  HWND hWnd,
  int  id,
  UINT fsModifiers,
  UINT vk
);

无论哪个窗口具有焦点,当您按下某个键组合时,它都可以要求您发出通知。