Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写代码以在 Qwebview 中显示 html 内容,我是通过 QWebview 的 setHtml 方法完成的。我还成功禁用了滚动条。
但我遇到了如何使内容适合 QWebView 大小的问题。
请帮忙..
我通过设置缩放级别来解决这个问题实际上,如果你想让 html 内容适合 Qwebview 大小使用,
qWebView->setZoomFactor(0.5); 根据您的 htmlContent 大小设置。