Qt怎样设置QMainWindow窗口中嵌套的QWidget子窗口的背景色

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Qt怎样设置QMainWindow窗口中嵌套的QWidget子窗口的背景色相关的知识,希望对你有一定的参考价值。

参考技术A setStyleSheet("background-color:red;");

QT:在其他窗口中显示QMainWindow

问题:在QFrame中嵌入QMainWindow窗口,却无法显示QMainWindow窗口,调用QMainWindow的show()却能出现单独弹出一个QMainWindow窗口。

解决:

由于QMainWindow有标题栏,导致无法嵌入显示,通过设置窗口标志函数setWindowFlags设置窗口标志未Qt::FramelessWindowhint去除QMainWindow的标题栏,即可显示

代码如下:

//MyWindows.h
class Frame : public QFrame

public:
  Frame(QWidget *parent = nullptr);
;

//MyWindows.cpp

Frame::Frame(QWidget *parent) : QFrame(parent)

  QMainWindow *mainWindow = new QMainWindow(this);
  mainWindow->setWindowFlags(Qt::FramelessWindowHint);
    QLabel * label = new QLabel("Hello World!", mainWindow);
  QVBoxLayout *vLayout = new QVBoxLayout(this);
  vLayout->addWidget(mainWindow);  


//main.cpp
int main(int argc, char *argv[])

    QApplication a(argc, argv);
    Frame w;
    w.show();
    return a.exec();

 

以上是关于Qt怎样设置QMainWindow窗口中嵌套的QWidget子窗口的背景色的主要内容,如果未能解决你的问题,请参考以下文章

QT:在其他窗口中显示QMainWindow

Qt 中 QMainWindow 上的另一个窗口

在Qt中手动设置窗口布局的正确方法

QT开发(二十二)——QMainWindow主窗口

Qt中的主窗口之菜单栏

QT中QWidgetQDialog及QMainWindow的区别