1/8作业

#include "widget.h"

Widget::Widget(QWidget *parent)
    : QWidget(parent)
{
    this->setWindowIcon(QIcon("D:/TXEDULite/steam/Steam.exe"));
    this->setWindowTitle("Stream");

    this->setFixedSize(881,550);//设置窗口大小
    this->setStyleSheet("background-color:rgb(27,28,35)");//设置窗口颜色
    this->setWindowFlag(Qt::FramelessWindowHint);//使窗口无边框

    QLineEdit *account=new QLineEdit(this);//账号行编辑器
    account->move(50,150);//账号行编辑器的位置
    account->setFixedSize(480,50);//账号行编辑器的大小
    account->setStyleSheet("color:white");

    QLineEdit *password=new QLineEdit(this);//密码行编辑器
    password->setEchoMode(QLineEdit::Password);//密码文本打印模式
    password->move(50,240); //密码行编辑器的位置
    password->setFixedSize(480,50);//密码行编辑器的大小
    password->setStyleSheet("color:white");

    QLabel *lab1=new QLabel(this);//steam图标
    lab1->setFixedSize(288,103);//图标的大小
    lab1->setPixmap(QPixmap("C:/Users/31842/Pictures/steam.png"));//导入图标图片

    QPushButton *login=new QPushButton("登录",this);//登录按键
    login->move(120,340);//登录按键的位置
    login->setFixedSize(340,60);//登录按键的大小
    login->setStyleSheet("background-color:rgb(31,142,255);border-radius:3px;color:white");//设置登录按键的颜色与字体颜色与倒角

    QLabel *lab_account=new QLabel("用账户名称登录",this);//账号输入提示
    lab_account->move(50,127);//提示位置
    lab_account->setStyleSheet("color:rgb(25,153,255)");//字体颜色
    lab_account->setFixedSize(120,20);//lable大小

    QLabel *lab_password=new QLabel("密码",this);//密码输入提示
    lab_password->setStyleSheet("color:white");//字体颜色
    lab_password->move(50,225);//提示位置

    QLabel *lab_QRcode=new QLabel(this);//二维码
    lab_QRcode->setPixmap(QPixmap("C:/Users/31842/Pictures/qr.png"));//导入二维码图片
    lab_QRcode->setFixedSize(297,374);//图片大小
    lab_QRcode->move(550,126);//图片位置


}

Widget::~Widget()
{

}

 1/8作业_第1张图片

你可能感兴趣的:(数据库)