2024-4-7 QT day1作业

myWidget.cpp

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

MyWidget::MyWidget(QWidget *parent)
    : QWidget(parent)
{
    //设置窗口标题
    this->setWindowTitle("QQ");
    //设置窗口图标
    this->setWindowIcon(QIcon("C:\\Users\\张谦\\Desktop\\pictrue\\qq.png"));
    //设置背景颜色
    this->setStyleSheet("background-color:rgb(173,200,255)");
    //设置窗口大小
    this->resize(428,330);
    //设置固定大小
    this->setFixedSize(428,330);
    //创建登录按钮
    QPushButton *btn1 = new QPushButton(this);
    btn1->setText("登录");
    btn1->setStyleSheet("background-color:rgb(28,196,252)");
    //移动按钮和设置大小
    btn1->move(110,250);
    btn1->resize(236,35);
    //行编辑器
    QLineEdit *edit1 = new QLineEdit(this);
    edit1->resize(256,35);
    edit1->move(100,150);
    edit1->setPlaceholderText("手机号/QQ号/邮箱");

    QLineEdit *edit2 = new QLineEdit(this);
    edit2->resize(256,35);
    edit2->move(100,200);
    edit2->setPlaceholderText("密码");
    edit2->setEchoMode(QLineEdit::Password);

    //设置标签类
    QLabel *lab1 = new QLabel(this);
    lab1->resize(428,128);
    //设置动态图
    QMovie *mv = new QMovie("C:\\Users\\张谦\\Desktop\\pictrue\\qqbackground.gif");
    lab1->setMovie(mv);
    mv->start();
    lab1->setScaledContents(true);


    //设置小图标
    QLabel *lab2 = new QLabel(this);
    lab2->resize(35,35);
    lab2->move(65,150);
    lab2->setPixmap(QPixmap("C:\\Users\\张谦\\Desktop\\pictrue\\qq.png"));
    lab2->setScaledContents(true);

    QLabel *lab3 = new QLabel(this);
    lab3->resize(35,35);
    lab3->move(65,200);
    lab3->setPixmap(QPixmap("C:\\Users\\张谦\\Desktop\\pictrue\\passwd.jpg"));
    lab3->setScaledContents(true);

    //放置头像
    QLabel *lab4 = new QLabel(this);
    lab4->resize(80,80);
    lab4->move(174,60);
    lab4->setPixmap(QPixmap("C:\\Users\\张谦\\Desktop\\pictrue\\head.png"));
    lab4->setScaledContents(true);




}

MyWidget::~MyWidget()
{
}

思维导图:

相关推荐
森屿Serien2 分钟前
Spring Boot常用注解
java·spring boot·后端
苹果醋31 小时前
React源码02 - 基础知识 React API 一览
java·运维·spring boot·mysql·nginx
晓纪同学1 小时前
QT-简单视觉框架代码
开发语言·qt
威桑1 小时前
Qt SizePolicy详解:minimum 与 minimumExpanding 的区别
开发语言·qt·扩张策略
Hello.Reader1 小时前
深入解析 Apache APISIX
java·apache
飞飞-躺着更舒服1 小时前
【QT】实现电子飞行显示器(简易版)
开发语言·qt
fyzy1 小时前
Qt获取本地计算的CPU温度
qt
cbdg37572 小时前
Qt 6 QML Settings location 不创建指定路径文件
qt
了一li2 小时前
Qt中的QProcess与Boost.Interprocess:实现多进程编程
服务器·数据库·qt
杨德杰2 小时前
QT网络(一):主机信息查询
网络·qt