分类: C/C++
2012-07-18 11:35:10
本帖最后由 titer1 于 2012-7-18 10:48 编辑 开始写了个 helloword.. helloworld 程序代码如下: #include int main(int argc,char *argv[]){ QApplication app(argc,argv); QPushButton *button=new QPushButton("Quit"); QObject::connect(button,SIGNAL(clicked()),&app,SLOT(quit())); button->show; return app.exec(); } 程序成功运行(-qws参数),但是显示的button不能点击,不能触摸(也就是不响应点击事件)。 运行列子程序 qt coliding mice也会出现同种情况, 点击上层程序,下面的shell 会出来响应。请大神指导。 |