#include "mywidget.h"
MyWidget::MyWidget(QWidget *parent)
: QWidget(parent)
{
this->resize(540,415);//窗口大小
this->setFixedSize(540,415);//固定窗口大小
this->setWindowTitle("QQ");//标题
this->setWindowIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\qq.png"));//图标
this->setStyleSheet("background-color:white");//图标
this->setWindowFlag(Qt::FramelessWindowHint);//去头
QLabel *lab1 = new QLabel(this);//设置标签
lab1->resize(540, 160);//标签大小
QMovie *mv = new QMovie("E:\\hqyjapp\\QT\\pictrue\\pictrue\\qq2.gif");//接收动图
lab1->setMovie(mv);//将动图放入标签
mv->start();//让动图动起来
lab1->setScaledContents(true);//自动适应大小
QLabel *lab2 = new QLabel(this);//设置标签2
lab2->resize(30,30);//标签大小
lab2->move(120,210);//标签移动位置
lab2->setPixmap(QPixmap("E:\\hqyjapp\\QT\\pictrue\\pictrue\\wodepeizhenshi.png"));//将图片放入标签
lab2->setScaledContents(true);//自动适应大小
QLabel *lab3 = new QLabel(this);//设置标签3
lab3->resize(30,30);
lab3->move(120, 260);
lab3->setPixmap(QPixmap("E:\\hqyjapp\\QT\\pictrue\\pictrue\\passwd.jpg"));
lab3->setScaledContents(true);
QLineEdit *edit1 = new QLineEdit(this);//设置行编辑器
edit1->resize(275,30);//行编辑器大小
edit1->move(155,210);//移动行编辑器位置
edit1->setPlaceholderText("QQ号/手机号/邮箱");//行编辑器占位
QLineEdit *edit2 = new QLineEdit(this);
edit2->resize(275,30);
edit2->move(155,260);
edit2->setPlaceholderText("密码");//行编辑器占位
edit2->setEchoMode(QLineEdit::Password);//行编辑器密码模式显示
QPushButton *btn = new QPushButton("登录",this);//按钮组件
btn->resize(300,45);//按钮组件大小
btn->move(120,345);//按钮组件移动位置
//按钮背景色,边框倒角,字体颜色
btn->setStyleSheet("background-color:rgb(8,189,253);border-radius:5px;color:white");
}
MyWidget::~MyWidget()
{
}
#include "mywidget.h"
MyWidget::MyWidget(QWidget *parent)
: QWidget(parent)
{
this->resize(1080,500);//设置界面大小
this->setWindowTitle("王者荣耀");//设置界面标题
this->setWindowIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\wzry.PNG"));//设置界面图标
this->setFixedSize(1080,500);//固定界面大小
//this->setWindowFlag(Qt::FramelessWindowHint);//去头
QLabel *lab1=new QLabel(this);//设置标签组件
lab1->resize(1080,500);//标签组件大小
QMovie *mv=new QMovie("E:\\hqyjapp\\QT\\pictrue\\pictrue\\wz.gif");//接收动图
lab1->setMovie(mv);//将动图放入标签
mv->start();//让动图动起来
lab1->setScaledContents(true);//自动适应标签大小
QPushButton *btn1=new QPushButton("游客登录",this);//按钮组件
btn1->move(250,380);//移动按钮位置
btn1->resize(180,40);//按钮大小
btn1->setStyleSheet("background-color:rgb(63,53,102);border-radius:20px;color:white");
btn1->setIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\yk.png"));
QPushButton *btn2=new QPushButton("与微信好友玩",this);//按钮组件
btn2->move(450,380);//移动按钮位置
btn2->resize(180,40);//按钮大小
btn2->setStyleSheet("background-color:rgb(73,121,71);border-radius:20px;color:white");
btn2->setIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\wx.png"));
QPushButton *btn3=new QPushButton("与QQ好友玩",this);//按钮组件
btn3->move(650,380);//移动按钮位置
btn3->resize(180,40);//按钮大小
btn3->setStyleSheet("background-color:rgb(45,82,136);border-radius:20px;color:white");
btn3->setIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\qq.png"));
QLabel *lab2=new QLabel(this);//设置标签组件
lab2->resize(60,70);//标签组件大小
lab2->move(970,400);//移动标签位置
lab2->setPixmap(QPixmap("E:\\hqyjapp\\QT\\pictrue\\pictrue\\sl.png"));
lab2->setScaledContents(true);//自动适应标签大小
// QLabel *lab3=new QLabel(this);//设置标签组件
// lab3->resize(30,130);//标签组件大小
// lab3->move(1000,0);//移动标签位置
// lab3->setPixmap(QPixmap("E:\\hqyjapp\\QT\\pictrue\\pictrue\\vi.png"));
// lab3->setScaledContents(true);//自动适应标签大小
QPushButton *btn4=new QPushButton(this);//按钮组件
btn4->move(1000,5);//移动按钮位置
btn4->resize(34,34);//按钮大小
btn4->setStyleSheet("background-color:rgb(16,21,40)");
btn4->setIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\vi.png"));
QPushButton *btn5=new QPushButton(this);//按钮组件
btn5->move(1000,38);//移动按钮位置
btn5->resize(34,34);//按钮大小
btn5->setStyleSheet("background-color:rgb(16,21,40)");
btn5->setIcon(QIcon("E:\\hqyjapp\\QT\\pictrue\\pictrue\\cod.png"));
}
MyWidget::~MyWidget()
{
}