0

我试图在循环中使用 Thread.sleep() 方法向上移动我的按钮。但是元素只是在完成循环后跳转到结束位置。

QPushButton upperBill = Globals.ui.firstUpperBillPushButton;

for(int i = 270; i >= -430; i -= 100)
    {
        upperBill.move(90, i);
        try {
            Thread.sleep(1000);
        }catch (InterruptedException e){
            e.printStackTrace();
        }
    }

什么问题可能导致问题?我究竟做错了什么?

4

0 回答 0