2

这是代码。

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();
4

1 回答 1

3

使用pos()方法。

int y = pos().y();
于 2013-03-06T14:50:41.400 回答