将 QTextBrowser 滚动到顶部
我有以下内容:
QString html = ui->DetailsTextBrowser->document()->toHtml();
html = details.replace("#VERSION", "1.0");
ui->DetailsTextBrowser->document()->setHtml(details);
不幸的是,在设置 DetailsTextBrowser 的 HTML 内容后,文档滚动到底部。
我尝试没有成功:
ui->DetailsTextBrowser->verticalScrollBar()->setValue(0);
Is there a way to roll QTextBrowser to the top?
I have the following:
QString html = ui->DetailsTextBrowser->document()->toHtml();
html = details.replace("#VERSION", "1.0");
ui->DetailsTextBrowser->document()->setHtml(details);
Unfortunately after the HTML content of the DetailsTextBrowser is set the document is scrolled to the bottom.
I tried without success:
ui->DetailsTextBrowser->verticalScrollBar()->setValue(0);
Is there a way to scroll QTextBrowser to the top?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)