美文网首页
在QWidget中放一个QMainWindow

在QWidget中放一个QMainWindow

作者: 雯饰太一 | 来源:发表于2023-07-13 07:20 被阅读0次

    QMainWidow本质是一个复杂的Widget,只要能获取到指针,就可以成功放置进去,如下:

    PlayUIContainer::PlayUIContainer(QWidget *parent)   
        : QWidget(parent),m_pPlayUIInterface(nullptr),m_pPlayUIWidget(nullptr)
    {
        ui.setupUi(this);
        this->setWindowTitle(QString::fromLocal8Bit("用户界面"));
    
        m_pPlayUIWidget = GetPlayUIWidget();
        QVBoxLayout* pLayout = new QVBoxLayout;
        pLayout->setContentsMargins(0, 0, 0, 0);
        pLayout->addWidget(m_pPlayUIWidget);
        this->setLayout(pLayout);
    
        m_pPlayUIInterface = GetPlayUIInterface();
    }
    

    其中PlayUIContainer是继承与QWidget的

    只要是UI界面,使用pointer的方式进行创建,可以很方便的在工程内做到嵌套,并且将类导出之后,也可以在其他同版本的QT工程中进行调用。

    这应当是一个常识,遇到的时候搜索不到相关的答案,在开发过程中,我们应当意识到,一切皆对象,只要是对象,那便可以动态创建,一些显示的内容都是widget,只要是widget那便可以进行嵌套

    相关文章

      网友评论

          本文标题:在QWidget中放一个QMainWindow

          本文链接:https://www.haomeiwen.com/subject/jbfiydtx.html