QLabel *label2=new QLabel();
QPixmap pixmap=ui->label->grab(ui->label->rect());
label2->setPixmap(pixmap);
label2->show();
QVBoxLayout *layout = new QVBoxLayout(ui->centralWidget); // 假设您的 UI 使用了 QVBoxLayout
layout->addWidget(label2);//将label添加到ui界面中