cefsharp 的 C# WPF 平滑滚动
C# WPF Smooth scrolling for cefsharp
我在我的 WPF 应用程序中使用 Cefsharp v79(最新版本),我需要平滑滚动 Cefsharp 页面
这是我的代码的样子:
<Grid>
cefsharp:ChromiumWebBrowser Address="https://whosebug.com/"/>
</Grid>
我试过了
ScrollViewer.CanContentScroll="False"
但是没有用,
有什么解决办法吗?
将@EternalC0der 的评论转换为答案,使其更易于阅读和实施。
以下代码将 disable-threaded-scrolling
参数传递给浏览器:
CefSettings s = new CefSettings();
s.CefCommandLineArgs.Add("disable-threaded-scrolling", "1");
Cef.Initialize(s);
我在我的 WPF 应用程序中使用 Cefsharp v79(最新版本),我需要平滑滚动 Cefsharp 页面
这是我的代码的样子:
<Grid>
cefsharp:ChromiumWebBrowser Address="https://whosebug.com/"/>
</Grid>
我试过了
ScrollViewer.CanContentScroll="False"
但是没有用, 有什么解决办法吗?
将@EternalC0der 的评论转换为答案,使其更易于阅读和实施。
以下代码将 disable-threaded-scrolling
参数传递给浏览器:
CefSettings s = new CefSettings();
s.CefCommandLineArgs.Add("disable-threaded-scrolling", "1");
Cef.Initialize(s);