qt 实现登录界面

#include "mainwidget.h"

MainWidget::MainWidget(QWidget *parent)
    : QWidget(parent)
{
    this->setWindowTitle("有道笔记");
    this->setWindowIcon(QIcon("C:\\Users\\18801\\Desktop\\ydIcon\\icon"));
//    this->setStyleSheet("background-color:white;border-radius:10px");
    this->setStyleSheet("background-color:white;border-radius:10px");
    this->resize(788,1243);
    this->setFixedSize(788,1243);
    this->setWindowFlag(Qt::FramelessWindowHint);//隐藏表头

    QLabel * lab1 = new QLabel(this);
    lab1->resize(150,150);
    lab1->move(638,5);
//    lab1->setStyleSheet("background-color:red");
    lab1->setPixmap(QPixmap("C:\\Users\\18801\\Desktop\\ydIcon\\right_top.png"));
    lab1->setScaledContents(true);//图片自适应

    QLabel * lab2 = new QLabel(this);
    lab2->resize(230,230);
    lab2->move(269,65);
//    lab2->setStyleSheet("background-color:red");
    lab2->setPixmap(QPixmap("C:\\Users\\18801\\Desktop\\ydIcon\\logo.png"));
    lab2->setScaledContents(true);//图片自适应

    QLineEdit * edit1 = new QLineEdit(this);
    edit1->setPlaceholderText("  请输入邮箱账号");
    edit1->setStyleSheet("barder-radius:10px;border: 1px solid gray;");
    edit1->resize(630,70);
    edit1->move(75,365);
    edit1->setMaxLength(18);

    QLineEdit * edit2 = new QLineEdit(this);
    edit2->setPlaceholderText("  请输入邮箱密码");
        edit2->setStyleSheet("barder-radius:10px;border: 1px solid gray;");
    edit2->resize(630,70);
    edit2->move(75,465);
    edit2->setMaxLength(18);
    edit2->setEchoMode(QLineEdit::Password);

    QPushButton * btn1 = new QPushButton(this);
    btn1->setText("登录");
    btn1->setStyleSheet("background-color:rgb(101,136,246);border-radius:10px;color:white");
    btn1->resize(630,70);
    btn1->move(75,665);

    QPushButton * btn2 = new QPushButton(this);
    btn2->setText("手机号登录");
    btn2->setStyleSheet("background-color:rgb(241,243,245);border-radius:10px;");
    btn2->resize(630,70);
    btn2->move(75,775);

    QLabel * lab3 = new QLabel(this);
    lab3->resize(666,294);
    lab3->move(70,926);
//    lab2->setStyleSheet("background-color:red");
    lab3->setPixmap(QPixmap("C:\\Users\\18801\\Desktop\\ydIcon\\bottom.png"));
    lab3->setScaledContents(true);//图片自适应

}

MainWidget::~MainWidget()
{

}
相关推荐
林开落L24 分钟前
前缀和算法习题篇(上)
c++·算法·leetcode
Prejudices37 分钟前
C++如何调用Python脚本
开发语言·c++·python
单音GG40 分钟前
推荐一个基于协程的C++(lua)游戏服务器
服务器·c++·游戏·lua
qing_0406031 小时前
C++——多态
开发语言·c++·多态
孙同学_1 小时前
【C++】—掌握STL vector 类:“Vector简介:动态数组的高效应用”
开发语言·c++
charlie1145141911 小时前
Qt Event事件系统小探2
c++·qt·拖放·事件系统
iiiiiankor1 小时前
C/C++内存管理 | new的机制 | 重载自己的operator new
java·c语言·c++
小辛学西嘎嘎1 小时前
C/C++精品项目之图床共享云存储(3):网络缓冲区类和main
c语言·开发语言·c++
c语言鹌鹑蛋2 小时前
C++初阶 --- 类和对象(1)
开发语言·c++
Jack黄从零学c++2 小时前
opencv(c++)图像的灰度转换
c++·人工智能·opencv