Access fields from another Controller in JavaFX

2019-01-20 05:07发布

I'm writing small application using JavaFX but I stuck with one problem.

I have fxml files:

MainPane.fxml
Stream.fxml
Play.fxml

and each of them has its own controller:

MainPaneController.java
StreamController.java
PlayController.java

Where in MainPane is:

<GridPane fx:controller="model.MainController" fx:id="mainGrid"
    xmlns:fx="http://javafx.com/fxml" alignment="CENTER" gridLinesVisible="true">

    <children>
        <fx:include source="Stream.fxml"/>
    </children>

    <children>
        <fx:include source="Play.fxml"/>
    </children>
</GridPane>

Play.fxml has this field:

<TextField fx:id="searchField" text="Search" onAction="#search"/>

now when action (enter button) if fired I want to access and change a label in Stream.fxml as follows:

public class PlayController implements Initializable {

    @FXML
    private TextField searchField;

    @FXML
    protected void search() {
        System.out.println("Search");
        String text = searchField.getText();
        //how to access Label in StreamController
    }
}

I would like to avoid binding like

MainPaneController <-> StreamController
MainController <-> PlayController

and access fields like:

mainController.getStreamController.changeLabel(text)

because I hope there is some better way to do this.

2条回答
走好不送
2楼-- · 2019-01-20 05:46

You need to send your Fxmlloader from controller to other ,i mean create a method in playController to get your fxmloader from StreamController.

public class PlayController implements Initializable {

pulic StreamController stream;
@FXML
private TextField searchField;

@FXML
protected void search() {
    System.out.println("Search");
    String text = searchField.getText();
   //how to access Label in StreamControlle
    stream._yourLabeL ....

}
public StreamController StreamController(){
      return stream;
} 
public StreamController setStreamController(StreamController streamController){
      stream=streamController
}

and in class that contain fxml loader add this line

StreamController streamcontroller=myStreamFxml.getController();
 new PlayController().setStreamController(streamController);
查看更多
一夜七次
3楼-- · 2019-01-20 05:47

Expose properties in the "nested" controllers StreamController and PlayController. Those controllers can bind the properties to the UI components they define as needed.

Then inject the nested controllers into MainController as described in the Nested Controllers section of the Introduction to FXML.

Update: Here's a more similar example, where the interacting controllers are both included in a common FXML.

查看更多
登录 后发表回答