当前位置:   article > 正文

QT DAY1作业

QT DAY1作业

1.QQ登录界面

头文件代码

  1. #ifndef MYWIDGET_H
  2. #define MYWIDGET_H
  3. #include <QWidget>
  4. #include <QIcon>
  5. #include <QLabel>
  6. #include <QPushButton>
  7. #include <QMovie>
  8. #include <QLineEdit>
  9. class MyWidget : public QWidget
  10. {
  11. Q_OBJECT
  12. public:
  13. MyWidget(QWidget *parent = 0);
  14. ~MyWidget();
  15. };
  16. #endif // MYWIDGET_H

main代码

  1. #include "mywidget.h"
  2. #include <QApplication>
  3. int main(int argc, char *argv[])
  4. {
  5. QApplication a(argc, argv);
  6. MyWidget w;
  7. w.show();
  8. return a.exec();
  9. }

源代码

  1. #include "mywidget.h"
  2. MyWidget::MyWidget(QWidget *parent)
  3. : QWidget(parent)
  4. {
  5. //=====================窗口类=======================
  6. //设置窗口标题
  7. this->setWindowTitle("QQ");
  8. //设置窗口图标
  9. this->setWindowIcon(QIcon("D:\\QT\\23101\\QT\\picture\\qq2_logo.png"));
  10. //设置窗口大小
  11. this->resize(430,330);
  12. //固定窗口大小
  13. this->setFixedSize(430,330);
  14. //设置颜色
  15. this->setStyleSheet("background-color:rgb(255,255,255)");
  16. //设置纯净窗口
  17. this->setWindowFlag(Qt::FramelessWindowHint);
  18. //==================标签类=========================
  19. //设置标签1
  20. QLabel *background = new QLabel(this);
  21. //设置标签大小
  22. background->resize(430,127);
  23. //设置动图类
  24. QMovie *mv = new QMovie("D:\\QT\\23101\\QT\\picture\\qq2.gif");
  25. //将动图插入到标签中
  26. background->setMovie(mv);
  27. //启动动图
  28. mv->start();
  29. //设置动图自动适应大小
  30. background->setScaledContents(true);
  31. //设置标签2
  32. QLabel *lab1 = new QLabel(this);
  33. //设置标签位置
  34. lab1->move(15,12);
  35. //设置大小
  36. lab1->resize(65,32);
  37. //设置透明度
  38. lab1->setStyleSheet("background-color:transparent");
  39. //插入图片
  40. lab1->setPixmap(QPixmap("D:\\QT\\23101\\QT\\picture\\qq_logo.png"));
  41. //设置图片自动适应大小
  42. lab1->setScaledContents(true);
  43. //设置标签3
  44. QLabel *lab2 = new QLabel(this);
  45. //设置标签位置
  46. lab2->move(99,175);
  47. //设置标签大小
  48. lab2->resize(22,26);
  49. //插入图片
  50. lab2->setPixmap(QPixmap("D:\\QT\\23101\\QT\\picture\\qq3.png"));
  51. //设置自动适应大小
  52. lab2->setScaledContents(true);
  53. //设置标签4
  54. QLabel *lab3 = new QLabel(this);
  55. //设置标签位置
  56. lab3->move(97,203);
  57. //设置标签大小
  58. lab3->resize(23,27);
  59. //插入图片
  60. lab3->setPixmap(QPixmap("D:\\QT\\23101\\QT\\picture\\passwd.png"));
  61. //设置自动适应大小
  62. lab3->setScaledContents(true);
  63. //=======================行编辑器类============================
  64. //设置行编辑器1账号
  65. QLineEdit *edit1 = new QLineEdit(this);
  66. //设置行编辑器大小
  67. edit1->resize(200,27);
  68. //设置行编辑器位置
  69. edit1->move(122,175);
  70. //设置占位
  71. edit1->setPlaceholderText("QQ号码/手机/邮箱");
  72. //设置行编辑器2密码
  73. QLineEdit *edit2 = new QLineEdit(this);
  74. //设置行编辑器大小
  75. edit2->resize(200,27);
  76. //设置行编辑器位置
  77. edit2->move(122,203);
  78. //设置占位
  79. edit2->setPlaceholderText("密码");
  80. //设置密码输入模式
  81. edit1->setEchoMode(QLineEdit::Password);
  82. //============================按钮类=============================
  83. //设置按钮1
  84. QPushButton *btn1 = new QPushButton("登录",this);
  85. //设置按钮背景颜色
  86. btn1->setStyleSheet("background-color:rgb(31,199,253);color:white;border-radius:5px");
  87. //设置大小
  88. btn1->resize(235,35);
  89. //移动位置
  90. btn1->move(97,275);

 2.思维导图

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/406155
推荐阅读
相关标签
  

闽ICP备14008679号