QT_day1

cpp 复制代码
#include "mywidget.h"

MyWidget::MyWidget(QWidget *parent)
    : QWidget(parent)
{
    //窗口大小
    this->resize(851,648);
    this->setFixedSize(851,648);
    //窗口背景色
    this->setStyleSheet("background:rgb(255,255,255,)");
    //窗口名称
    this->setWindowTitle("TIM");
    //窗口图标
    this->setWindowIcon(QIcon("C:\\Users\\翁俊彦\\Desktop\\test_qq\\屏幕截图 2024-06-13 185540.png"));
    //左侧图片
    QLabel *lab1=new QLabel(this);
    lab1->setPixmap(QPixmap("C:\\Users\\翁俊彦\\Desktop\\test_qq\\屏幕截图 2024-06-13 185621.png"));
    //qq登录的lable
    QLabel *lab2=new QLabel(this);
    lab2->move(575,156);
    lab2->setPixmap(QPixmap("C:\\Users\\翁俊彦\\Desktop\\test_qq\\屏幕截图 2024-06-13 185827.png"));
    //微信登录的label
    QLabel *lab3=new QLabel(this);
    lab3->move(690,156);
    lab3->setPixmap(QPixmap("C:\\Users\\翁俊彦\\Desktop\\test_qq\\屏幕截图 2024-06-13 185900.png"));

    //账号输入
    QLineEdit *edit1 = new QLineEdit(this);
    edit1->move(542,300);
    edit1->resize(280,50);
    edit1->setPlaceholderText("QQ号码/手机/邮箱");

    //登录按钮
    QPushButton *btn1 = new QPushButton(this);
    QIcon icon1("C:\\Users\\翁俊彦\\Desktop\\test_qq\\屏幕截图 2024-06-13 192900.png");
    btn1->setIcon(icon1);
    btn1->move(790,435);

    //密码输入
    QLineEdit *edit2 = new QLineEdit(this);
    edit2->move(542,370);
    edit2->resize(280,50);
    edit2->setPlaceholderText("密码");
    edit2->setEchoMode(QLineEdit::Password);

    //找回密码按钮
    QPushButton *btn2 = new QPushButton(this);
    btn2->setText("找回密码");
    btn2->move(750,545);
    btn2->resize(65,22);

    //注册账号按钮
    QPushButton *btn3 = new QPushButton(this);
    btn3->setText("注册账号");
    btn3->move(750,585);
    btn3->resize(65,22);

    //记住密码复选框
    QCheckBox *box1 = new QCheckBox(this);
    box1->setText("记住密码");
    box1->resize(85,22);
    box1->move(555,545);

    //自动登录复选框
    QCheckBox *box2 = new QCheckBox(this);
    box2->setText("自动登录");
    box2->resize(85,22);
    box2->move(555,585);


}

MyWidget::~MyWidget()
{
}
相关推荐
Qter_Sean17 分钟前
自己动手写Qt Creator插件
开发语言·qt
何曾参静谧21 分钟前
「QT」文件类 之 QIODevice 输入输出设备类
开发语言·qt
爱吃生蚝的于勒1 小时前
C语言内存函数
c语言·开发语言·数据结构·c++·学习·算法
小白学大数据3 小时前
Python爬虫开发中的分析与方案制定
开发语言·c++·爬虫·python
冰芒猓4 小时前
SpringMVC数据校验、数据格式化处理、国际化设置
开发语言·maven
失落的香蕉4 小时前
C语言串讲-2之指针和结构体
java·c语言·开发语言
红中马喽4 小时前
JS学习日记(webAPI—DOM)
开发语言·前端·javascript·笔记·vscode·学习
杜杜的man5 小时前
【go从零单排】Closing Channels通道关闭、Range over Channels
开发语言·后端·golang
java小吕布5 小时前
Java中Properties的使用详解
java·开发语言·后端
versatile_zpc6 小时前
C++初阶:类和对象(上)
开发语言·c++