University stuff.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

GUIController.java 268B

1234567891011
  1. import javafx.event.ActionEvent;
  2. import javafx.fxml.FXML;
  3. import javafx.scene.text.Text;
  4. public class GUIController {
  5. @FXML Text actiontarget;
  6. @FXML protected void handleSubmitButton(ActionEvent event) {
  7. actiontarget.setText(actiontarget.getText()+" yay");
  8. }
  9. }