-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Embedded web page text box can not input Chinese in CefSharp.WPF #1777
Comments
Duplicate of #1262 |
You can apply the change without modifying the source, not sure why someone would recommend that. You can either subclass browser.PreviewTextInput += (o, e) =>
{
foreach (var character in e.Text)
{
browser.GetHost().SendKeyEvent((int)WM.CHAR, (int)character, 0);
}
e.Handled = true;
}; See #1262 (comment) for instructions on testing this issue and reporting the bug to the |
Ok. Thanks. I See. |
My .net is v4.5.0 so i can just use cefsharp.wpf v47.0.4
but it doesn`t work .. |
Bug Report
Delete this line and everything above, and then fill in the details below.
Our embedded system needs to be x86 and x86 generated, but our computer is 64 bits.
WinForms
,WPF
orOffScreen
?I`m using ‘WPF’.
Access to information, the blog post said that the issue had been resolved, but there have been. The solution is to change the source. The Code as follows:
`//CefSharp.Wpf.ChromiumWebBrowser file
protected override void OnPreviewTextInput(TextCompositionEventArgs e)
{
}`
can you want to ask there are other ways to solve it, or when it can be repaired, because I was using the CefSharp reference Nuget,My English is Poor. Thanks,
Expected output Chinese
But there is no
This can not be through log query
I want to show the Html page, and input information
Cef
TestApp from http://opensource.spotify.com/cefbuilds/index.html (http://cefbuilds.com for older version)?The text was updated successfully, but these errors were encountered: