I'm currently implementing a small web view in my application.
Everything is working fine with CefSharp
but I have a small problem.
It seems like CefSharp
is using something like en-US
as the default browser language. I can't find any information about how to change the language that is used.
For my web view I need the browser to be set on a German language.
Is there any way to do that? Can the language be changed? If yes, how?
You can change the language that:
CefSettings settingsBrowser = new CefSettings();
settingsBrowser.Locale = "de";
Cef.Initialize(settingsBrowser);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With