QT day1

#include "widget.h"
#include "ui_widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
    , ui(new Ui::Widget)
{
    ui->setupUi(this);

    //窗口标题
    this->setWindowTitle("学生登录系统");

    //窗口图标
    this->setWindowIcon(QIcon("C:\\Users\\86132\\Desktop\\pictrue\\wodepeizhenshi.png"));

    //纯净窗口
    this->setWindowFlag(Qt::FramelessWindowHint);

    //背景颜色
    this->setStyleSheet("background-color:white");

    //设置窗口大小
    this->resize(540,410);

    //固定窗口大小
    this->setFixedSize(540,410);

    //设置标签
    QLabel *lab1 = new QLabel(this);
    lab1->resize(540,160);
    lab1->setStyleSheet("background-color:green");

    QLabel *userNameLab = new QLabel("账号:",this);
    userNameLab->resize(35,50);
    userNameLab->move(120,210);

    QLabel *passwdLab = new QLabel("密码:",this);
    passwdLab->resize(35,50);
    passwdLab->move(120,250);

    //设置动图
    QMovie *mv = new QMovie("C:\\Users\\86132\\Pictures\\Camera Roll\\th (5).jpg");
    mv->setParent(this);

    lab1->setMovie(mv);
    mv->start();
    lab1->setScaledContents(true);

    //行编译器
    QLineEdit *userNameEdit = new QLineEdit(this);
    userNameEdit->move(165,210);
    userNameEdit->resize(270,35);
    userNameEdit->setPlaceholderText("学号");

    QLineEdit *passwdEdit = new QLineEdit(this);
    passwdEdit->move(165,250);
    passwdEdit->resize(270,35);
    passwdEdit->setPlaceholderText("密码");


    //按钮
    QPushButton *login = new QPushButton("登录",this);
    login->move(120, 290);
    login->resize(315,45);
    login->setStyleSheet("background-color:rgb(31,200,153);color:white;border-radius:10px");
}

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

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值