QQWidget::QQWidget(QWidget *parent)
this->setWindowTitle("QQ");
this->setWindowIcon(QIcon("D:\\HQYJ\\C++&QT\\pictrue\\qq.png"));
this->setStyleSheet("background-color:white;border-radius:5;border-width:3");
QLabel *label1 = new QLabel(this);
QMovie *mv = new QMovie("C:\\Users\\99689\\Pictures\\Saved Pictures\\3.gif");
label1->setScaledContents(true);
QLabel *label3 = new QLabel(this);
label3->setPixmap(QPixmap("C:\\Users\\99689\\Pictures\\Saved Pictures\\cat.png"));
label3->setScaledContents(true);
QLabel *label4 = new QLabel(this);
label4->setPixmap(QPixmap("C:\\Users\\99689\\Pictures\\Saved Pictures\\1.png"));
label4->setScaledContents(true);
QLabel *label5 = new QLabel(this);
label5->setPixmap(QPixmap("C:\\Users\\99689\\Pictures\\Saved Pictures\\2.png"));
label5->setScaledContents(true);
QLabel *label6 = new QLabel(this);
label6->setStyleSheet("font-family:微软雅黑;color:rgb(150,150,150)");
QLabel *label7 = new QLabel(this);
label7->setPixmap(QPixmap("C:\\Users\\99689\\Pictures\\Saved Pictures\\5.png"));
label7->setScaledContents(true);
QLabel *label8 = new QLabel(this);
label8->setPixmap(QPixmap("C:\\Users\\99689\\Pictures\\Saved Pictures\\4.png"));
label8->setScaledContents(true);
QLineEdit *edit1 = new QLineEdit(this);
edit1->setPlaceholderText("QQ号码/手机/邮箱");
edit1->setStyleSheet("font-family:微软雅黑;color:rgb(120,120,120)");
QLineEdit *edit2 = new QLineEdit(this);
edit2->setPlaceholderText("密码");
edit2->setEchoMode(QLineEdit::Password);
edit2->setStyleSheet("font-family:微软雅黑;color:rgb(120,120,120)");
QPushButton *button1 = new QPushButton("&登录",this);
button1->setStyleSheet("font-family:微软雅黑;background-color:rgb(112,201,253);color:white;border-radius:5;border-width:8");

