欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Qt按钮部件简单代码

程序员文章站 2022-06-01 09:54:08
...
#include "mywidget.h"
#include "ui_mywidget.h"

#include<QApplication>
#include<QWidget>
#include<QLabel>
#include<QVBoxLayout>

QMyWidget::QMyWidget(QWidget *parent) :
    QWidget(parent),
    ui(new Ui::QMyWidget)
{
    ui->setupUi(this);
    QVBoxLayout* lay = new QVBoxLayout(this);
    QLabel*label;
    lay->addWidget(label=new QLabel("jsfhdsuhf"));
    label->setStyleSheet("QLabel {font:bold 16px;color:blue}");
}

QMyWidget::~QMyWidget()
{
    delete ui;
}

相关标签: 学习记录