用qt 如何弹出小窗口代码实现
时间: 2023-06-04 18:05:24 浏览: 266
一个简单的qt窗口程序
以下是用 Qt 弹出小窗口的代码实现示例:
``` c++
#include <QApplication>
#include <QMessageBox>
int main(int argc, char *argv[]) {
QApplication app(argc, argv);
QMessageBox::information(NULL, "Title", "Content", QMessageBox::Yes | QMessageBox::No, QMessageBox::Yes);
return app.exec();
}
```
以上代码会在程序运行时弹出一个包含标题和内容的小窗口,并且有 “Yes” 和 “No” 两个按键。你可以根据实际需要进行修改。
阅读全文