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小部件在运行时在我的布局和 UI 中具有边框,类似于QTableView. 现在它看起来没有边界和隐藏。
QWebView
QTableView
甚至可能吗?
无法为 QWebView 设置边框。相反,您可以将 QWebView 放在另一个 QWidget 中并设置它的边框。请参见下面的示例(QtDesigner):
小部件层次结构:
查看 QtDesigner 内部:
QFrame 的样式表:
QFrame { border: 1px solid black; background: white; }