QMessageBox::information如何使用
时间: 2024-01-07 16:22:20 浏览: 119
MessageBox的用法
4星 · 用户满意度95%
QMessageBox::information是Qt中的一个静态成员函数,用于显示一个信息框。它的使用方法如下:
```cpp
QMessageBox::information(QWidget *parent, const QString &title, const QString &text, StandardButtons buttons = Ok, StandardButton defaultButton = NoButton)
```
其中,参数说明如下:
- parent:父窗口指针,用于指定信息框的父窗口。
- title:信息框的标题。
- text:信息框的内容。
- buttons:指定信息框上显示的按钮,默认为Ok按钮。
- defaultButton:指定默认按钮,默认为NoButton。
下面是一个使用QMessageBox::information的例子:
```cpp
QMessageBox::information(this, "提示", "数据库连接成功");
```
这个例子会在当前窗口中显示一个标题为"提示",内容为"数据库连接成功"的信息框。
阅读全文