所以你不能再给mainwindow添加QVBoxLayout了,你只能给centralWidget添加layout。
只要将setLayout(mainLayout)
这一句改成:
this->centralWidget()->setLayout(mainLayout)就行了。
改过之后:
MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent),
ui(new Ui::MainWindow)
{
ui->setupUi(this)
QVBoxLayout *mainLayout = new QVBoxLayout
Title = new QLabel(tr("校园导航系统"),this)
Title->resize(550,100)
Title->setAlignment(Qt::AlignCenter)
Title->setStyleSheet("background-color:redfont-size:40pxcolor:blue")
Greeting = new QLabel(tr("Welcome"),this)
Greeting->resize(550,100)
Greeting->setStyleSheet("background-color:yellowfont-size:20pxcolor:blue")
mainLayout->addWidget(Title)
mainLayout->addWidget(Greeting)
this->centralWidget()->setLayout(mainLayout)
//++++++++
setWindowTitle(tr("校园导航系统"))
resize(550,600)
}
新建一个C++类,在d出的窗口中填写类名CLabel,并选择其父类为QLabel
然后在这个新类中添加 paintEvent或者mouseMoveEvent 成员方法;
在要用到label控件上右键->提升为... 在d出的提升对话框中添加CLabel类,选择这个类,点击提升后该label控件就可以响应你自己的paintEvent或者mouseMoveEvent方法。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)