Qt学习笔记 QMessageBox
Qt的几种MessageBox
1.Infomation类型
QMessageBox::information(this,tr("hello"),tr("title"));
2.Question类型
QMessageBox::StandardButton returnBtn; returnBtn = QMessageBox::question(this,tr("hello have problem?"),tr("error!"),QMessageBox::Yes|QMessageBox::No); if(returnBtn==QMessageBox::Yes) { QMessageBox::information(this,tr("Yes!"),tr("error")); }
3.Warning类型
QMessageBox::warning(this,tr("warning!"),tr("warning!"));
4.自定义类型
QMessageBox msg; msg.setText("customer!"); msg.setWindowTitle(tr("titleHaHa")); msg.setStandardButtons(QMessageBox::Ok|QMessageBox::Cancel); msg.exec();
作者:李鹏
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。