資源簡(jiǎn)介
QPropertyAnimation動(dòng)畫(huà)
代碼片段和文件信息
#include?“mainwindow.h“
#include?
int?main(int?argc?char?*argv[])
{
????QApplication?a(argc?argv);
????MainWindow?w;
????QPropertyAnimation?*animation?=?new?QPropertyAnimation(&w“windowOpacity“);
????animation->setDuration(1000);
????animation->setStartValue(0);
????animation->setEndValue(1);
????animation->start();
????w.show();
????return?a.exec();
}
評(píng)論
共有 條評(píng)論