qt按键没有显示在窗口中
#include<qapplication.h>#include<qpushbutton.h>#include<qlabel.h>intmain(intargc,char...
#include <qapplication.h>#include <qpushbutton.h>#include <qlabel.h>int main(int argc,char **argv){ QApplication a(argc,argv); QLabel *he=new QLabel(""); he->show(); QPushButton *hello=new QPushButton("Hello!",0); hello->resize(50,30); hello->show(); return a.exec();
} 展开
} 展开
1个回答
展开全部
解决这个问题有两种办法(实质上都是一种啦...)
用 setLayout 吧 hello 放到 he 中..
QHBoxLayout *layout = new QHBoxLayout;
layout->addWidget(layout)
he->setLayout(layout);
第二种方法就是直接把 hello 的父类变成 he 就ok了.
QPushButton *btn = new QPushButton("hello",he);
用setLayout的方法最后hello的父类也会变成 he(实质上都是一样的...)
(ps 代码都是全手打的.你懂的.)
用 setLayout 吧 hello 放到 he 中..
QHBoxLayout *layout = new QHBoxLayout;
layout->addWidget(layout)
he->setLayout(layout);
第二种方法就是直接把 hello 的父类变成 he 就ok了.
QPushButton *btn = new QPushButton("hello",he);
用setLayout的方法最后hello的父类也会变成 he(实质上都是一样的...)
(ps 代码都是全手打的.你懂的.)
追问
第二种方法编译出错,怎么破?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询