#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);//设置标签2lab2->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);//设置标签3lab3->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()
{
}