马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 ~风介~ 于 2015-10-28 22:57 编辑
Code:#include <QMessageBox>
#include <QApplication>
int main(int argc, char *argv[])
{
QApplication a(argc, argv);
QMessageBox msg,box;
msg.setWindowTitle("Qt");
msg.setText("I Love FishC.com!");
msg.setInformativeText("Do you love FishC.com?");
msg.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
msg.setDefaultButton(QMessageBox::Yes);
int ret = msg.exec();
switch(ret)
{
case QMessageBox::Yes:
box.setText("Hi Boddy!");
break;
case QMessageBox::No:
box.setText("I'm sorry to hear that!");
break;
default:
box.setText("error!");
break;
}
box.exec();
return a.exec();
}
Screenshot:
|