Access fields from another Controller in JavaFX

强颜欢笑 提交于 2019-12-17 20:59:11

问题


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.


回答1:


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.




回答2:


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);


来源:https://stackoverflow.com/questions/23048500/access-fields-from-another-controller-in-javafx

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!