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();

}
展开
 我来答
创作者XXGDQ4kMbU
2014-04-09 · TA获得超过1281个赞
知道小有建树答主
回答量:371
采纳率:66%
帮助的人:429万
展开全部
解决这个问题有两种办法(实质上都是一种啦...)
用 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 代码都是全手打的.你懂的.)
追问
第二种方法编译出错,怎么破?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式