【发布时间】:2017-01-01 05:27:30
【问题描述】:
这可能是飞行员错误,但 FXML 属性未绑定到 fx:id 上的控制器类。我已经将其缩减为一个微不足道的例子,但仍然“不高兴”。我忽略了什么?
FXML 文件...
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.layout.BorderPane?>
<BorderPane fx:id="mainFrame" maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.65" xmlns:fx="http://javafx.com/fxml/1" fx:controller="sample.controller.BorderPaneCtrl">
<left>
<AnchorPane fx:id="anchorPaneLeft" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</left>
</BorderPane>
相关的 Java 代码是...
package sample.controller;
import javafx.fxml.FXML;
import javafx.scene.layout.AnchorPane;
public class BorderPaneCtrl {
@FXML private AnchorPane anchorPaneLeft;
public BorderPaneCtrl() {
/* so, @FXML-annotated variables are accessible, but not
* yet populated
*/
if (anchorPaneLeft == null) {
System.out.println("anchorPaneLeft is null");
}
}
/* this is what was missing...added for "completeness"
*/
@FXML
public void initialize() {
/* anchorPaneLeft has now been populated, so it's now
* usable
*/
if (anchorPaneLeft != null) {
// do cool stuff
}
}
自我在这里不是问题,我很确定我忽略了一些简单的事情。
【问题讨论】:
-
我在你的
BorderPaneCtrl类中没有看到包。在 FXML 文件中,您有sample.controller.BorderPaneCtrl -
包声明在那里,但这不是问题。我注释了我的原始帖子以显示我缺少的内容。
标签: java javafx binding javafx-8 fxml