QWebView set border visible

I want to make QWebView widget have borders in my layout and UI when running, similar to QTableView . Now it looks borderless and hidden.

Is it even possible?


It's not possible to set border to QWebView. Instead you can place your QWebView inside another QWidget and set it's border. See example below (QtDesigner):

Widgets hierarchy:

Look inside QtDesigner:

StyleSheet for QFrame:

QFrame
{
    border: 1px solid black;
    background: white;
}
链接地址: http://www.djcxy.com/p/39310.html

上一篇: QLineEdit:将光标位置设置为开始对焦

下一篇: QWebView设置边框可见