我在触发位于另一个类中的按钮时遇到问题。
我试过在参数中传递按钮,但我得到空异常错误,我创建的 getter 也是如此。
public class ButtonHolder{
@FXML
RadioButton radioButton;
public void radioButtonOnClick(){
//does something
}
public RadioButton getRadioButton(){
return this.radioButton;
}
}
public class Example{
public void fireButton(){
ButtonHolder buttonHolder = new ButtonHolder();
buttonHolder.getRadioButton.fire();
}
}
子衿沉夜
相关分类