标签:blog 使用 io ar art div 代码 log
在使用用CefSharp使用过程中,系统用了很多第三方控件。这些控件很多能够根据浏览器设置的语言来进行控件展示对应语言。
在cefSharp可以设置系统语言,代码如下:
CefSharp.Settings setting = new CefSharp.Settings(); string flashPath = Application.StartupPath+ @"\Plug\gcswf32.dll"; setting.AddPluginPath(flashPath); //设置语言 setting.Locale = "zh-CN"; CEF.Initialize(setting);
其中 setting.AddPluginPath()用于引入Flash插件。
Loacal 属性就是对CefSharp运行语言环境进行设置。
cefSharp 设置运行时系统语言,布布扣,bubuko.com
标签:blog 使用 io ar art div 代码 log
原文地址:http://www.cnblogs.com/ITCommunication/p/3923480.html