10

我有一个 BorderPane(与 MainController 关联),BorderPane 的 FXML 用于将<fx:include>Label(带有控制器 StatusBarController)包含到 BorderPane 的底部区域。不幸的是,StatusBarController 没有注入 MainController 类实例,我不明白为什么。

main.fxml:包含状态栏的 BorderPane

<fx:root type="javafx.scene.layout.BorderPane" fx:id="borderPane" xmlns:fx="http://javafx.com/fxml" fx:controller="com.example.controllers.MainController">
  <bottom>
    <fx:include source="statusbar.fxml" />
  </bottom>
</fx:root>

statusbar.fxml:标签及其关联的控制器

<Label fx:id="statusbar" text="A label simulating a status bar" xmlns:fx="http://javafx.com/fxml" fx:controller="com.example.controllers.StatusBarController" />

带有 StatusBarController 字段的 MainController:

public class MainController
{
    @FXML
    private StatusBarController statusbarController; // PROBLEM HERE: I would expect the StatusBarController to be injected but this does not happen!


    // Implementing Initializable Interface no longer required on JavaFX 2.2 according to
    // http://docs.oracle.com/javafx/2/fxml_get_started/whats_new2.htm
    // (I also tested this, the initialize() method is being called)
    @SuppressWarnings("unused") // only called by the FXMLLoader
    @FXML // This method is called by the FXMLLoader when initialization is complete
    private void initialize() {
        // initialize your logic here: all @FXML variables will have been injected
        assert borderPane != null : "fx:id=\"borderPane\" was not injected: check your FXML file 'main.fxml'.";
        System.out.println("MainController initialize()");

        //statusbarController.setStatusText("Hello from MainController"); // PROBLEM HERE: this fails because statusbarController is not injected as expected
    }
}

以及应用程序的开始:

public void start(Stage primaryStage) 
    {       
        Parent root = null;

        try {
            root = FXMLLoader.load(getClass().getResource("/resources/main.fxml"));
        } catch (IOException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }

        primaryStage.setTitle("Demo");
        primaryStage.setScene(new Scene(root, 800, 600));
        primaryStage.show();
    }

我的示例的完整源代码位于http://codestefan.googlecode.com/svn/trunk/SubcontrollerAccess/

那么问题来了:为什么StatusBarController没有注入到MainController的statusbarController变量中呢?

感谢您的任何提示!

4

2 回答 2

19

要使用@FXML标签,您必须提供fx:id.

更新您的main.fxml

<bottom>
    <fx:include fx:id="statusbar" source="statusbar.fxml" />
</bottom>

之后,您可以在您的 : 中使用下一个常量MainController.java

@FXML
Label statusbar; // node itself
@FXML
private StatusBarController statusbarController; // controller

请注意,这statusbarController不是部分小写的类名,而是fx:id+Controller字。

于 2013-02-09T23:34:32.530 回答
0

netbeans 8.0 中似乎也存在嵌套 fxml 的错误。不能指望 netbeans 为您创建嵌套的 fxml 的控制器对象,它必须手动插入到您的 MainController 中。每次在 netbeans 中更新控制器时,它都会被清除,因此可能有点乏味。对于此示例,将插入

@FXML 私有状态栏控制器状态栏控制器;

在这种情况下手动连接到主控制器,然后它可以正常工作。对于组织大型 fxmls/控制器非常有用。

于 2014-06-24T13:25:34.703 回答