博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Qt学习笔记 QMessageBox
阅读量:5030 次
发布时间:2019-06-12

本文共 655 字,大约阅读时间需要 2 分钟。

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();

 

转载于:https://www.cnblogs.com/li-peng/p/3652428.html

你可能感兴趣的文章
HDU 1856
查看>>
课堂作业01--架构师的职责
查看>>
iOS计算富文本(NSMutableAttributedString)高度
查看>>
2017/09/15 ( 框架2)
查看>>
Centos下源码安装git
查看>>
gulp-rev-append md5版本号
查看>>
IO流之File类
查看>>
sql 基础语句
查看>>
CF717A Festival Organization(第一类斯特林数,斐波那契数列)
查看>>
oracle直接读写ms sqlserver数据库(二)配置透明网关
查看>>
控件发布:div2dropdownlist(div模拟dropdownlist控件)
查看>>
Oracle composite index column ordering
查看>>
ActiveReports 报表控件官方中文入门教程 (3)-如何选择页面报表和区域报表
查看>>
kaggle竞赛
查看>>
区块链入门教程
查看>>
域 搭建OU 组织单元
查看>>
npm常用命令
查看>>
南海区行政审批管理系统接口规范v0.3(规划)4.2.【queryExpireList】当天到期业务查询...
查看>>
[置顶] 细说Cookies
查看>>
[wp7软件]wp7~~新闻资讯,阅读软件下载大全! 集合贴~~~
查看>>