fxml包括其他fxml文件和用户定义的属性

时间:2018-11-23 09:38:40

标签: javafx scenebuilder

嗨,

我有以下问题。

是否可以创建一个主fxml文件并放置/包含另一个应该具有用户定义属性的fxml文件。

例如,我有:main.fxml和一个fan_object.fxml
然后在fan_object.fxml上包含3个main.fxml。现在我想为每个fan_object.fxml实例定义另一个地址或工具提示文本,等等?

这可能吗?

1 个答案:

答案 0 :(得分:3)

签入文档:fx:include

您可以执行以下操作:

如果这是您的 main.fxml

<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<VBox xmlns:fx="http://javafx.com/fxml">
    <children>
        <fx:include fx:id="fan1" source="fan_object.fxml"/>
        <fx:include fx:id="fan2" source="fan_object.fxml"/>
        <fx:include fx:id="fan3" source="fan_object.fxml"/>
    </children>
</VBox>

在您的 MainController.java 类中:

@FXML
private FanController fan1Controller;
@FXML
private FanController fan2Controller;
@FXML
private FanController fan3Controller;

现在在您的 FanController.java 类中:

public void setToolTip (String tooltipText){
        //You put the tooltip of the object you have in this controller
        //for instance
        myButton.setTooltip(new Tooltip(tooltipText));
}

现在您只需要打电话:

fan1Controller.setToolTip("Tip : !");

希望这能解决您的问题。