永发信息网

用QT3写个简单的程序:按按钮后弹出一个QMessageBox

答案:2  悬赏:70  手机版
解决时间 2021-02-04 08:23
  • 提问者网友:遁入空寂
  • 2021-02-04 01:48
刚刚学习QT,装的是QT3.3.4,谁能帮我写一个小的程序:就是一个Qbutton的主界面,按钮动作后弹出一个QMessageBox就可以了。
我自己写了下,总是不行:
#include
#include
#include

int main( int argc, char **argv )
{
QApplication a( argc, argv );
QPushButton *hello=new QPushButton( "Hello world!", 0 );
hello->resize( 100, 30 );
a.setMainWidget( hello );
hello->show();
QMessageBox *mb=new QMessageBox(NULL,"abcdefg");
QObject::connect( hello, SIGNAL(pressed ()),mb,
SLOT(about(NULL, "Qt Application Example","fjkasdhfkjsd")) );
return a.exec();
}
编译链接是成功的,运行能显示Button,就是按钮后没反应,唉!
最佳答案
  • 五星知识达人网友:人類模型
  • 2021-02-04 02:45
我没试过用SLOT(about(NULL, "Qt Application Example","fjkasdhfkjsd")) );不过,你可以先用个函数来试试啊
全部回答
  • 1楼网友:妄饮晩冬酒
  • 2021-02-04 02:51
搜一下:用QT3写个简单的程序:按按钮后弹出一个QMessageBox
我要举报
如以上回答内容为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
点此我要举报以上问答信息
大家都在看
推荐资讯