在前面分享的几篇中咱已经玩耍了Popup、ListBox多选、Grid动态分、RadioButton模板、控件的拖放效果、控件的置顶和置底、控件的锁定、自定义Window样式、动画效果、Expander控件、ListBox折叠列表、聊天窗口、ListBox图片消息、窗口抖动、语音发送、语音播放、语音播放问题;今晚接着研究CEF去加载网页,下面是加载高德地图效果:
直接上GitHub的地址:
https://github.com/CefNet/CefNet
1、在入口进行初始化设置:
- var settings = new CefSettings();
- settings.MultiThreadedMessageLoop = !externalMessagePump;
- settings.ExternalMessagePump = externalMessagePump;
- settings.NoSandbox = true;
- settings.WindowlessRenderingEnabled = true;
- settings.LocalesDirPath = Path.Combine(cefPath, "Resources", "locales");
- settings.ResourcesDirPath = Path.Combine(cefPath, "Resources");
- settings.LogSeverity = CefLogSeverity.Warning;
- settings.IgnoreCertificateErrors = true;
- settings.UncaughtExceptionStackSize = 8;
2、我直接后台加载测试的:
- private void GoToLoadMap()
- {
- string initUrl = "file:///" + AppDomain.CurrentDomain.BaseDirectory + @"Maps/HeatMap.html";
- WebView webView = new WebView();
- webView.InitialUrl = initUrl;
- RootGrid.Children.Add(webView);
- }
3、去下载Chromium Embedded Framework:
https://cef-builds.spotifycdn.com/index.html
4、关于配置
- Extract all files into the cef/ directory.
- Copy cef/Resources/icudtl.dat into cef/Release/
最终简单的效果先这样吧;以后有时间的话,可以再去
标签:CEF,settings,控件,跨平台,cef,webView,ListBox,Resources,Avalonia From: https://www.cnblogs.com/chinasoft/p/17531829.html