QMainWindow在show()之后立即关闭



我是Qt的新手(主要使用Objective-C),所以我可能遇到了noob问题。从QDialog窗口,我尝试打开QMainWindow,如下所示:

this->close();
SQLWindow window;
window.receivePath(path); //Path for the .sqlite file
window.show()

QDialog关闭,我看到了一个新窗口的一瞥,但它也关闭了。以下是QMainWindow部分:

SQLWindow::SQLWindow(QWidget *parent) : QMainWindow(parent), ui(new Ui::SQLWindow) 
{ 
    ui->setupUi(this); 
    this->initialSetup(); 
} 
SQLWindow::~SQLWindow() 
{ 
    delete ui; 
} 
void SQLWindow::initialSetup() 
{ 
    ui->tableView->setSortingEnabled(true); 
    ui->tableView->setEditTriggers(QAbstractItemView::NoEditTriggers); 
} 
void SQLWindow::receivePath(QString path) 
{ 
   this->openDatabase(path); 
} 
void SQLWindow::openDatabase(QString path) 
{
    //Opening database just fine
}

您的窗口是一个局部变量,它在函数结束时被销毁,因此析构函数会关闭它。您可以使用new SQLWindow在堆上创建SQLWindow,例如使用此处所示的Qt::WA_DeleteOnClose属性。

或者,一个更好的设计可能是将对话框和窗口都创建为main函数的局部变量,并让主函数通过从对话框到SQLWindow的路径,那么就不需要new了。

相关内容

  • 没有找到相关文章

最新更新