首页 > 其他 > 详细

QMessageBox

时间:2016-12-14 21:18:25      阅读:280      评论:0      收藏:0      [点我收藏+]

技术分享

#include "dialog.h"
#include "ui_dialog.h"
#include<QMessageBox>

Dialog::Dialog(QWidget *parent) :
    QDialog(parent),
    ui(new Ui::Dialog)
{
    ui->setupUi(this);
}

Dialog::~Dialog()
{
    delete ui;
}

void Dialog::on_pushButton_clicked()
{
    //info
    QMessageBox::information(this,"title here","Text Here");
}

void Dialog::on_pushButton_2_clicked()
{
    //question
    QMessageBox::StandardButton reply;
    reply = QMessageBox::information(this,"title here","Do you like cats?",QMessageBox::Yes|QMessageBox::No);

    if(reply == QMessageBox::Yes)
    {
        QMessageBox::information(this,"title here","You LOVE cats");
    }
}

void Dialog::on_pushButton_3_clicked()
{
    QMessageBox::warning(this,"title here","Waring");
}

void Dialog::on_pushButton_4_clicked()
{
    QMessageBox::StandardButton reply;
    reply = QMessageBox::question(this,"My Title","My Test here", QMessageBox::YesToAll|QMessageBox::Yes|QMessageBox::No|QMessageBox::NoToAll);

    if(reply == QMessageBox::Yes)
    {
        QMessageBox::information(this,"title here","YES");
    }
}

  

QMessageBox

原文:http://www.cnblogs.com/my-cat/p/6180567.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!