这是代码。
QPropertyAnimation *animation3 = new QPropertyAnimation (ui->modifyButton, "geometry");
animation3->setDuration(1000);
animation3->setStartValue(QRect(20, 120, 141, 20));
animation3->setStopValue(QRect(20, 70, 141, 20));
animation3->start();
我需要应用程序自动确定 modifyButton 的“Y”坐标,因为它不是固定的并且正在变化。那么我该怎么做这样的事情。
int y = get_y_coordinate_somehow();
animation3->setStartValue(QRect(20, y, 141, 20));start();