无法通过 C++ 获取 IME 输入上下文(ImmGetContext)

发布于 2024-08-25 19:32:31 字数 356 浏览 6 评论 0原文

您好,我正在尝试使用以下伪代码禁用记事本上的 IME:

MakeNotepadActiveWindow();//Notepad is already open and set to Japanese IME

HWND hwnd = GetTheHWNDForNotepad();

HIMC context = ImmGetContext(hwnd);
if(context == NULL)
printf("context is null %d ",GetLastError());

并且上面的代码始终为我提供空上下文。 GetLastError() 给出 0;

有人可以告诉我如何获取InputContext

Hi I am trying to disable the IME on notepad using the following psuedo code:

MakeNotepadActiveWindow();//Notepad is already open and set to Japanese IME

HWND hwnd = GetTheHWNDForNotepad();

HIMC context = ImmGetContext(hwnd);
if(context == NULL)
printf("context is null %d ",GetLastError());

and the above code is always giving me the null context. GetLastError() gives 0;

Could somebody tell me how to get the InputContext

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

黄昏下泛黄的笔记 2024-09-01 19:32:31

以防万一其他人遇到类似的问题

  • 除非您拥有窗口,否则您无法获取窗口的输入上下文。
  • 因此,您需要通过在该窗口进程中执行代码来调用 ImmGetInputContext(hwnd)。

Just in case somebody else runs into similar problem

  • You can't get the input context for a window unless you own it.
  • So you need to call ImmGetInputContext(hwnd) by executing the code in that window's process.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文