当前位置: 技术问答>linux和unix
改变QWebView的背景颜色
来源: 互联网 发布时间:2016-08-11
本文导语: 各位好,我在程序中调用了QWebView用来加载并显示网页,在加载网页之前,QWebView的背景是白色的,有没有办法让这个背景变成黑色,谢谢! | 快要沉了,帮你顶下 希望有会的人来帮你解答下 ...
各位好,我在程序中调用了QWebView用来加载并显示网页,在加载网页之前,QWebView的背景是白色的,有没有办法让这个背景变成黑色,谢谢!
|
快要沉了,帮你顶下
希望有会的人来帮你解答下
希望有会的人来帮你解答下
|
QWidget *window = new QWidget;
QPalette palette;
palette.setColor(window->backgroundRole(), Qt::red);
window->setPalette(palette);
或者
window->setStyleSheet("background-color:rgb(0, 0, 0);");
http://topic.csdn.net/u/20100317/15/fa183da9-c2a9-47be-a45e-29fd5301d7bf.html
|