我在单击按钮后尝试等待输入时遇到一些问题。
与我的团队一起,我们正在制作一种纸牌游戏,其中纸牌相互攻击,问题是我不知道如何在单击按钮后使事件处理程序等待用户单击另一个按钮。
代码如下:
private Button attackingButton(){
Button b1 = new Button();
b1.setOnAction(new EventHandler<ActionEvent>()
{
public void handle(ActionEvent event){
//Here i want the user to press another button and, depending which one he
//pressed, asing a variable
Card aCard = //The card that the button pressed has inside
}
}
眼眸繁星
相关分类