是否有一组开关会导致默认浏览器变轻而不是重量级?我更喜欢在Xaml中创建浏览器,默认为轻量级:
...
BrowserPreferences.SetChromiumSwitches("--disable-gpu" + ???);
InitializeComponent();
...
<wpf:WPFBrowserView x:Name="webControl"
Width="{Binding Width}"
Height="{Binding Height}"
ConsoleMessageEvent="WebControl_OnConsoleMessageEvent"
FailLoadingFrameEvent="WebControl_OnFailLoadingFrameEvent"
FinishLoadingFrameEvent="WebControl_OnFinishLoadingFrameEvent"
DocumentLoadedInMainFrameEvent="WebControl_OnDocumentLoadedInMainFrameEvent"
Loaded="WebControl_OnLoaded" >
答案 0 :(得分:2)
Chromium开关与DotNetBrowser渲染模式无关。
对于当前版本,创建轻量级组件的唯一方法是使用WPFBrowserView类的非默认构造函数。