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()
{
}

思维导图:

相关推荐
计算机毕设指导612 分钟前
基于 SpringBoot 的作业管理系统【附源码】
java·vue.js·spring boot·后端·mysql·spring·intellij-idea
Gu Gu Study13 分钟前
枚举与lambda表达式,枚举实现单例模式为什么是安全的,lambda表达式与函数式接口的小九九~
java·开发语言
Chris _data16 分钟前
二叉树oj题解析
java·数据结构
Mr.Q16 分钟前
OpenCV和Qt坐标系不一致问题
qt·opencv
牙牙70521 分钟前
Centos7安装Jenkins脚本一键部署
java·servlet·jenkins
paopaokaka_luck29 分钟前
[371]基于springboot的高校实习管理系统
java·spring boot·后端
以后不吃煲仔饭42 分钟前
Java基础夯实——2.7 线程上下文切换
java·开发语言
进阶的架构师42 分钟前
2024年Java面试题及答案整理(1000+面试题附答案解析)
java·开发语言
The_Ticker1 小时前
CFD平台如何接入实时行情源
java·大数据·数据库·人工智能·算法·区块链·软件工程
Elastic 中国社区官方博客1 小时前
Elasticsearch 开放推理 API 增加了对 IBM watsonx.ai Slate 嵌入模型的支持
大数据·数据库·人工智能·elasticsearch·搜索引擎·ai·全文检索