QMessageBox有几种
时间: 2023-09-14 14:03:08 浏览: 105
在Qt中,QMessageBox类提供了一种简单的方法来创建常见的标准对话框。QMessageBox有以下5种窗口类型:
1. QMessageBox::NoIcon:无图标的消息框
2. QMessageBox::Question:带有问号图标的消息框
3. QMessageBox::Information:带有信息图标的消息框
4. QMessageBox::Warning:带有警告图标的消息框
5. QMessageBox::Critical:带有错误图标的消息框
此外,还可以使用QMessageBox::about()和QMessageBox::aboutQt()函数创建关于对话框。
阅读全文