javaFX - 如何使用来自另一个控制器的控制器的函数或对象

时间:2015-05-31 16:08:53

标签: javafx scene stage

我看到很多类似于我的问题,但我没弄清楚如何解决我的问题,所以有我的代码:

我有一个简单的主要内容:

MainClassFXGui.java

public class MainClassFXGui extends Application {

    @Override
    public void start(Stage stage) throws Exception {
        Parent root = FXMLLoader.load(getClass().getResource("MyProgramMainGuiTab.fxml"));

        Scene scene = new Scene(root);
        stage.setScene(scene);
        stage.setTitle("Assicurazione");
        stage.show();
    }

    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }
}

和三个fxml文件,其中一个包含另外两个,由标记

<fx:include source="MyTab1.fxml" />

MyProgramMainGuiTab.fxml

...
<TabPane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="5000.0" prefWidth="5000.0" tabClosingPolicy="UNAVAILABLE">
          <tabs>
              <Tab closable="false" text="MyTab1">
                   <content>
    <fx:include source="MyTab1.fxml" />
                   </content>
              </Tab>
              <Tab closable="false" text="MyTab2">
                   <content>
    <fx:include source="MyTab2.fxml" />
                   </content>
              </Tab>
          </tabs>
    </TabPane>
...

和三个控制器:

MyProgramMainGuiTabController.java

....
@FXML
private Label LeftSt;
/**
 * Initializes the controller class.
 */
@Override
public void initialize(URL url, ResourceBundle rb) {
    LeftSt.setText("");
}    

public void setLeftSt(String st){
    LeftSt.setText(st);
}
...

MyTab1Controller.java

@FXML
private void handleButtonAction(ActionEvent event) {
    System.out.println("You clicked me!");
    setLeftSt("Can I change the label of the MyProgramMainGuiTabController?");
}

我试过这样的方式:

MyTab1Controller.java

private MyProgramMainGuiTabController controller;

@FXML
private void handleButtonAction(ActionEvent event) {
        System.out.println("You clicked me!");
        controller.setLeftSt("Can I change the label of the MyProgramMainGuiTabController?");
}

@Override
public void initialize(URL url, ResourceBundle rb) {
    FXMLLoader fxmlLoader = new
    FXMLLoader(getClass().getResource("MyProgramMainGuiTab.fxml"));
    try {
         fxmlLoader.load();            
    } catch (IOException exception) {
         throw new RuntimeException(exception);
    }
    controller = (MyProgramMainGuiTabController)fxmlLoader.getController();
}

但我有一个空指针异常,或者如果我在handleButtonAction函数中移动对象'controller'的实例化代码,我没有任何错误,但标签不会改变。

也许我可以在MainClassFXGui.java中创建静态场景和静态舞台? 但后来我不知道如何使用它们......

MainClassFXGui.java

public class MainClassFXGui extends Application {
    static private Scene scene;
    static private Stage stage;

    @Override
    public void start(Stage stage) throws Exception {
        Parent root = FXMLLoader.load(getClass().getResource("MyProgramMainGuiTab.fxml"));

        this.scene = new Scene(root);
        stage.setScene(scene);
        stage.setTitle("Assicurazione");
        stage.show();
        this.stage = stage;
    }
    /**
     * @param args the command line arguments
     */
    public static void main(String[] args) {
        launch(args);
    }

    public static Scene getScene(){
        return AssicurazioneFXGui.scene;
    }

    public static Stage getStage(){
        return AssicurazioneFXGui.stage;
    }

}

我可以用getScene()或getStage()做些什么吗?任何想法或建议?

感谢所有人

2 个答案:

答案 0 :(得分:1)

使用常规方法在StringProperty中定义MyTab1Controller

public class MyTab1Controller {

    private final StringProperty leftSt = new SimpleStringProperty();

    public StringProperty leftStProperty() { 
        return leftSt ;
    }

    public final String getLeftSt() {
        return leftStProperty().get();
    }

    public final void setLeftSt(String leftSt) {
        leftStProperty().set(leftSt);
    }

    // ...

    @FXML
    public void handleButtonAction() {
        setLeftSt(...);
    }

    // ...
}

现在为fx:id标记分配fx:include属性:

<Tab closable="false" text="MyTab1">
    <content>
        <fx:include fx:id="myTab1" source="MyTab1.fxml" />
    </content>
</Tab>

这意味着您可以将MyTab1.fxml控制器注入包含它的FXML的控制器中(MyProgramMainGuiTabController):

public class MyProgramMainGuiTabController {

    @FXML
    private MyTab1Controller myTab1Controller ;

}

然后您可以观察属性并在标签发生变化时更新标签:

public class MyProgramMainGuiTabController {

    @FXML
    private MyTab1Controller myTab1Controller ;

    @FXML
    private Label leftSt;

    public void initialize() {
        leftSt.setText("");
        myTab1Controller.leftStProperty().addListener((obs, oldValue, newValue) -> 
            leftSt.setText(newValue));
    }    
}

请注意,此处的规则是控制器的字段名称是fx:id属性的值,其中包含&#34; Controller&#34;附加:myTab1 fx:id解析为注册控制器的字段myTab1Controller。有关详细信息,请参阅NestedControllers

答案 1 :(得分:0)

此刻我已经以这种方式解决了。如果有人有更好的解决方案,请写信。另外,因为如果我需要执行一个函数,这不能解决问题..谢谢

MyProgramMainGuiTabController.fxml

...
@FXML
private Label LeftSt;
/**
 * Initializes the controller class.
 */
@Override
public void initialize(URL url, ResourceBundle rb) {
    LeftSt.setText("");
}  
...

MyTab1Controller.fxml

@FXML
private Button myObject;

private Scene scene;
private Label lblDataLeft;

@FXML
private void handleButtonAction(ActionEvent event) {
        System.out.println("You clicked me!");
        setLeftSt("this works!");
}

public void setLeftSt(String st){
    if(this.scene == null)
        this.scene = myObject.getScene();
    if(this.lblDataLeft==null)
        this.lblDataLeft = (Label) scene.lookup("#LeftSt");
    if (this.lblDataLeft!=null) 
        this.lblDataLeft.setText(st); 
}