QVBoxLayout是Undeclared Identifier

时间:2013-10-09 21:24:01

标签: c++ qt layout

我正在使用Qt Framework和C ++开发一个简单的应用程序,目前因为Undeclared Identifier错误而陷入困境。

我包含了这些库:

#include <QtGui>
#include <QWidget>
#include <QSlider>
#include <QFrame>

以下是QVBoxLayoutQHBoxLayout

的缩写
QVBoxLayout *vbox = new QVBoxLayout(this);
QHBoxLayout *hbox = new QHBoxLayout();
vbox->addStretch(1);
widget = new Widget(this);
hbox->addWidget(widget, 0);
vbox->addLayout(hbox);
setLayout(vbox);

我错过了什么吗?

0 个答案:

没有答案