• richedit禁用输入法的实现


                今天项目里遇到一个需求,密码输入框,不能输入中文,看了下主流的实现都是禁用输入法。

               

            HIMC  g_hIMC =NULL;       
    richedit_ctrl_->AttachSetFocus([this](ui::EventArgs*){ g_hIMC = ImmAssociateContext(m_hWnd, NULL);//handle 为要禁用的窗口句柄 return true; }); richedit_ctrl_->AttachKillFocus([this](ui::EventArgs*){ if (g_hIMC) { ImmAssociateContext(m_hWnd, g_hIMC);//handle 为要启用的窗口句柄 } return true; });

              思路就是richedit获取到焦点的时候,禁用输入法,失去焦点的时候,恢复输入法。

  • 相关阅读:
    7.Linux学习
    5.@AliasFor注解
    5.Maven学习
    3.postman
    4.git总结
    8.Docker学习
    6.idea教程
    2.jwt
    4.open feign
    1.MarkDown常规使用语法
  • 原文地址:https://www.cnblogs.com/xuhuajie/p/13154094.html
Copyright © 2020-2023  润新知