4

我正在尝试为QWebView元素设置透明背景。

+---------------------------+
| x | Window title          | <<< Hidden borders and title bar
+---------------------------+     view->setWindowFlags(Qt::FramelessWindowHint);
|                           |
|     ******************    |   
|    ********************<--|------- This is the HTML side (a rectangle with
|     ******************    |        rounded corners)
|                         <-|-- with transparent background that must
+---------------------------+   remain transparent for the desktop window

我搜索了如何为 webview 设置透明背景,我在所有地方都找到了这段代码:

QPalette pal = view->palette();
pal.setBrush(QPalette::Base, Qt::transparent);
view->page()->setPalette(pal);
view->setAttribute(Qt::WA_OpaquePaintEvent, false);

上面的代码不能正常工作。这就是我的窗口的外观:

所以,问题是灰色部分必须是透明的。我该如何解决这个问题?

我使用以下代码来取消装饰窗口。

view->setWindowFlags(Qt::FramelessWindowHint);
4

1 回答 1

5

这对我有用:

view->setStyleSheet("background:transparent");
view->setAttribute(Qt::WA_TranslucentBackground);
于 2013-10-23T19:37:59.427 回答