MyWidget::MyWidget(QWidget *parent)
this->setWindowTitle("EXVSDB");
this->setWindowIcon(QIcon("C:\\Users\\dyj\\Pictures\\exvs2xb-title.png"));
this->setWindowFlag(Qt::FramelessWindowHint);
this->setStyleSheet("background-color:White");
QLabel *lab1 = new QLabel(this);
lab1->setStyleSheet("background-color:pink");
QMovie *mv = new QMovie("C:\\Users\\dyj\\Pictures\\bili_v_1699873038780.gif");
lab1->setScaledContents(true);
QLabel *lab2 = new QLabel(this);
lab2->setPixmap(QPixmap("C:\\Users\\dyj\\Desktop\\pictrue\\userName.jpg"));
lab2->setScaledContents(true);
QLabel *lab3 = new QLabel(this);
lab3->setPixmap(QPixmap("C:\\Users\\dyj\\Desktop\\pictrue\\passwd.jpg"));
lab3->setScaledContents(true);
QLabel *lab4 = new QLabel(this);
lab4->setPixmap(QPixmap("C:\\Users\\dyj\\Desktop\\pictrue\\R-C.png"));
lab4->setScaledContents(true);
QLineEdit *edit1 = new QLineEdit(this);
QLineEdit *edit2 = new QLineEdit(this);
edit2->setEchoMode(QLineEdit::Password);
QPushButton *btn1 = new QPushButton(this);
btn1->setStyleSheet("background-color:SteelBlue;border-radius:10px");