欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

CefSharp 无法输入中文的问题

程序员文章站 2022-05-18 12:02:20
在CefSharp75版本,使用了WpfImeKeyboardHandler支持后,无法支持搜狗中文输入法 其中的一个修复方案: 在ChrominumWebBrowser中,添加焦点事件的重写,对InputMethod相关进行修改 SetIsInputMethodEnabled -- 是否可输入中文 ......

在cefsharp75版本,使用了wpfimekeyboardhandler支持后,无法支持搜狗中文输入法

 

其中的一个修复方案:

在chrominumwebbrowser中,添加焦点事件的重写,对inputmethod相关进行修改

 1     protected override void ongotfocus(routedeventargs e)
 2     {
 3         inputmethod.setisinputmethodenabled(this, true);
 4         inputmethod.setisinputmethodsuspended(this, true);
 5         base.ongotfocus(e);
 6     }
 7 
 8     protected override void onlostfocus(routedeventargs e)
 9     {
10         base.onlostfocus(e);
11         inputmethod.setisinputmethodenabled(this, false);
12         inputmethod.setisinputmethodsuspended(this, false);
13     }