我有一个网格窗格,我想让它可见。然后我想暂停程序 2 秒并再次使网格不可见。出于某种原因,网格在我在程序中使用的 thread.sleep 之后变得可见。
这一切都发生在按钮点击事件中。
我试着绕过 thread.sleep,将它们放在一个新方法中并使用多个睡眠,但没有任何效果。
gameGrid.setVisible(true)
gameGrid.setVisible(false)
按钮事件:
public void handleButtonGo(ActionEvent Event) throws IOException { //On go button press
boolean validation = true;
try {
gameGrid.setVisible(true);
placeShips();
}catch (Exception e){
labelwarning.setText(e.getMessage()); //on error the program will stop trying to place ships and refresh any ships placed so far.
validation = false;
//gameGrid.getChildren().clear();
//BoardSetup();
try {
Thread.sleep(2000);
} catch (InterruptedException e1) {
// TODO Auto-generated catch block
e1.printStackTrace();
}
gameGrid.setVisible(false);
}
}
网格在 thread.sleep 后显示一毫秒。
慕工程0101907
相关分类