【发布时间】:2016-12-04 14:31:57
【问题描述】:
我有一个Main 类启动我的应用程序,它在fxml 中指定了它的MainController 类。单击Connect 按钮时,将打开另一个具有不同场景和控制器的窗口。根据操作,我想通过我的MainController 更改Label 文本值,但它没有按预期工作。请参阅下面的详细信息。
基本上我想从ConnectController 类更新MainController 类中connectedLabel 上的文本,但它不起作用。
Main.java:
public class Main extends Application {
private static final Logger logger = Logger.getLogger(Main.class.getName());
@Override
public void start(Stage primaryStage) {
try {
logger.info("Application is starting");
AnchorPane page = FXMLLoader.load(getClass().getResource("Main.fxml"));
//BorderPane root = new BorderPane();
//Scene scene = new Scene(root,400,400);
Scene scene = new Scene(page);
scene.getStylesheets().add(getClass().getResource("Main.css").toExternalForm());
primaryStage.setScene(scene);
primaryStage.setResizable(false);
primaryStage.show();
} catch(Exception e) {
logger.warning(e.getMessage());
}
}
public static void main(String[] args) {
launch(args);
}
}
MainController.java:
public class MainController implements Initializable {
private Context context = null;
@FXML
Label connectedLabel;
@FXML
Button connectButton;
@Override
public void initialize(URL location, ResourceBundle resources) {
context = Context.getInstance();
}
public void setConnectedLabel(String name) {
connectedLabel.setText(name);
connectButton.setText("Disconnect");
}
@FXML
public void connectTokenButton_onMouseClicked() {
try {
if (connectTokenButton.getText().equals("Disconnect")) {
boolean disconnected = context.getToken().disconnectToken();
if (disconnected) {
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Disconnected");
alert.setHeaderText(null);
alert.setContentText("Succcessfully disconnected!");
alert.showAndWait();
connectedTokenLabel.setText("N/A");
connectTokenButton.setText("Connect");
}
} else {
AnchorPane page = FXMLLoader.load(getClass().getResource("ConnectView.fxml"));
Stage stage = new Stage();
Scene scene = new Scene(page);
scene.getStylesheets().add(getClass().getResource("ConnectView.css").toExternalForm());
stage.setScene(scene);
stage.setResizable(false);
stage.initModality(Modality.APPLICATION_MODAL);
stage.initOwner(connectedLabel.getScene().getWindow());
stage.show();
//Stage thisStage = (Stage) connectedTokenLabel.getScene().getWindow();
//thisStage.close();
}
} catch (Exception e) {
System.out.println(e);
}
}
}
ConnectController.java:
public class ConnectController implements Initializable {
private Context context = null;
@FXML
ComboBox<String> selectComboBox;
@FXML
PasswordField userPinPasswordField;
@FXML
Button cancelButton;
@Override
public void initialize(URL location, ResourceBundle resources) {
context = Context.getInstance();
}
public void setMainC(Stage stage) {
mainStage = stage;
}
@FXML
private void connectToken_onMouseClicked() {
String pin = userPinPasswordField.getText();
boolean connected = context.connect(selectComboBox.getValue(), pin);
if (connected) {
Alert alert = new Alert(AlertType.INFORMATION);
alert.setTitle("Connected");
alert.setHeaderText(null);
alert.setContentText("Succcessfully connected!");
alert.showAndWait();
FXMLLoader myLoader = new FXMLLoader(getClass().getResource("Main.fxml"));
MainController mainController = myLoader.getController();
mainController.setConnectedTokenLabel(context.getConnectedName());
Stage thisStage = (Stage) selectComboBox.getScene().getWindow();
thisStage.close();
}
}
}
从不同的控制器调用setConnectedLabel 方法时我做错了什么?
【问题讨论】:
标签: java javafx controller label fxml