码迷,mamicode.com
首页 > 其他好文 > 详细

QMessageBox

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

标签:idg   button   text   his   ext   技术   ima   void   war   

技术分享

#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

标签:idg   button   text   his   ext   技术   ima   void   war   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!