QMessageBox::information 自定义按钮

Posted 小哈龙

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了QMessageBox::information 自定义按钮相关的知识,希望对你有一定的参考价值。

一.基本简介

在使用QT的弹窗提示时,习惯使用

QMessageBox::information

QMessageBox::question

QMessageBox::warning

QMessageBox::critical

一般对于按钮,是使用系统提供的默认按钮 例如:QMessageBox::Ok|QMessageBox::Cancel 等

二.如果要自己定义按钮,使用自定义的按钮文字,该怎么做?

答案其实很简单,以information举例,如下代码:

static int information(QWidget *parent, const QString &title,
                           const QString& text,
                           int button0, int button1 = 0, int button2 = 0);

static int information(QWidget *parent, const QString &title,
                           const QString& text,
                           const QString& button0Text,
                           const QString& button1Text = QString(),
                           const QString& button2Text = QString(),
                           int defaultButtonNumber = 0,
                           int escapeButtonNumber = -1);

inline static StandardButton information(QWidget *parent, const QString &title,
                                  const QString& text,
                                  StandardButton button0, StandardButton button1 = NoButton)

使用案例

 int btnStatus = QMessageBox::information(nulptr,tr("title"),tr("text"),tr("按钮1"),tr("按钮2"))

if(0 == btnStatus)//点击了按钮1(按钮索引位置为0,后面的依次增加)

    //do

else if(1 == btnStatus)//点击了按钮2(按钮索引位置为1)

    //do

以上是关于QMessageBox::information 自定义按钮的主要内容,如果未能解决你的问题,请参考以下文章

qt中QMessageBox.information的第一个参数

QMessageBox类学习:

QMessageBox的用法

QMessageBox用法

QMessageBox消息框的几种类型

Python——pyqt5——消息框(QMessageBox)