欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

qt 主窗口关闭时关闭子窗口

程序员文章站 2022-04-04 23:17:56
...

1、this指定主窗口为父类

void MainWindow::on_pushButton_clicked()
{
    Dialog *aa = new Dialog(this);
    aa->show();
}

2、重写主窗口closeEvent事件
mainwindow.h

QVector<Dialog*> m_test;

mainwindow.cpp

QVector<Dialog*> m_test;

void MainWindow::closeEvent(QCloseEvent *event)
{
    qDebug() << "close";
    foreach(Dialog *cc, m_test)
    {
        if(cc != nullptr)
        {
            delete cc;
            cc = nullptr;
        }
    }
}

void MainWindow::on_pushButton_clicked()
{
    Dialog *aa = new Dialog();
    m_test.append(aa);
    aa->show();
}

当子窗口关闭,同时delete子窗口对象,释放资源可用Qt::WA_DeleteOnClose 属性

void MainWindow::on_pushButton_clicked()
{
    Dialog *aa = new Dialog();
    aa->setAttribute(Qt::WA_DeleteOnClose, true);
    aa->show();
}