void MainWindow::on_pushButton_clicked()
{
QPropertyAnimation *animation = new QPropertyAnimation(ui->label, "windowOpacity");
animation->setDuration(3000);
animation->setStartValue(1);
animation->setEndValue(0.5);
animation->start();
}
设置this主窗口透明度没问题,设置label、button都不行,没反应