// Event Listener on Button[#btnhello].onAction
@FXML
public void handlehello(ActionEvent event) {
// TODO Autogenerated
try {
FXMLLoader loader=new FXMLLoader(getClass().getResource("/view/show.fxml"));
Parent root=(Parent) loader.load();
showController show=loader.getController();
show.setText(name.getText());
show.setTime(btnone.getText());
show.setThree(btnthree.getText());
Stage stage=new Stage();
stage.setScene(new Scene(root));
stage.show();
}
catch(IOException e) {
e.printStackTrace();
}
}
答案 0 :(得分:0)
根据您的图片,我认为show.fxml
setTime()
中没有文字字段,因此我认为您需要在show.fxml
中添加文字字段并在setTime()
这应该可以解决问题。
如果这不能解决问题,请在此处发布完整代码以及show.fxml
。