Answer the question
In order to leave comments, you need to log in
qt creator. How to do File->Exit?
Как сделать так, чтобы при нажатии на Выход программа закрывалась?
void Window1::on_exitProg_triggered()
{
QAction* exitProg = ui->exitProg;
QObject::connect(exitProg,SIGNAL(triggered()),this,SLOT(quit()));
}
void Window1::quit(){
QApplication::quit();
}
Сделала так. Работает, но! закрывает только со второго раза (при втором нажатии на Файл->Выход). Что тут не так?
Answer the question
In order to leave comments, you need to log in
Window1::on_exitProg_triggered()
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question