随笔 - 215  文章 - 0  评论 - 14  阅读 - 49万

QMessageBox简单使用

首先要调用

#include <QMessageBox>

然后

            QMessageBox msgBox;
            msgBox.setWindowTitle("错误");
            msgBox.setText("除数不能为零");
            msgBox.exec();
    

或者简单点

QMessageBox::warning(this,"错误","除数不能为零");

常用的弹出框类型

  1. Question
    For asking a question during normal operations.
  2. Information
    For reporting information about normal operations.
  3. Warning
    For reporting non-critical errors.
  4. Critical
    For reporting critical errors.
posted on   神秘藏宝室  阅读(5266)  评论(0编辑  收藏  举报
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8

 >>>转载请注明出处<<<

喜欢请打赏

扫描二维码打赏

了解更多

点击右上角即可分享
微信分享提示