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.
我正在使用以下代码显示网页。但标题始终显示为我们的公司名称(XYZ)。
QString msg; QWebView view = new QWebView(); view->page()->mainFrame()->setHtml(msg); view->show();
title 属性似乎是只读的QWebView,只能通过使用/更改 HTML 文档中的标题标签来设置。
QWebView
但是,运行上述代码时弹出的窗口的标题可以用 更改view->setWindowTitle(),就像任何用作顶级窗口的 Qt 小部件一样。
view->setWindowTitle()