gpt4 book ai didi

java - 如何添加 component as a child in FXML?

转载 作者:行者123 更新时间:2023-11-29 08:40:02 24 4
gpt4 key购买 nike

我有一个扩展 AnchorPane 的自定义组件,如:

public class CustomAnchorPane extends AnchorPane { }

我想在 BorderPane 中加载它.如果我想加载常规 AnchorPane ,我会这样做:(为简洁起见,我删除了一些行)

<BorderPane fx:id="borderpane" ... fx:controller="main.java.Controller">
<center>
<AnchorPane fx:id="anchorpane" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</center>
</BorderPane>

我了解 <fx:root>构造用于可重用/自定义组件。我不明白如何将它设置为 BorderPane 的子级,但是,因为我相信它必须是 FXML 文件的根目录。因此,以下会引发错误:

<BorderPane fx:id="borderpane" ... fx:controller="main.java.Controller">
<center>
<fx:root fx:id="custom_anchorpane" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</center>
</BorderPane>

执行此操作的正确方法是什么?

提前致谢。

最佳答案

<fx:root>仅作为 fxml 的根才有意义,因为这是唯一使用从 fxml 创建的对象的父对象但未在 fxml 本身中定义的地方。

它只会生成 FXMLLoader使用通过 setRoot 传递的对象而不是为此标签本身创建一个元素。

假设您已经正确实现了您的自定义 Node ,您可以像使用任何其他元素一样使用它:

<BorderPane fx:id="borderpane" ... fx:controller="main.java.Controller">
<center>
<CustomAnchorPane fx:id="custom_anchorpane" prefHeight="200.0" prefWidth="200.0" BorderPane.alignment="CENTER" />
</center>
</BorderPane>

请注意,这需要在文件开头的处理指令中进行适当的导入,并且该类需要提供 public不带参数的构造函数。

如果你没有自己创建自定义类,但是有一个fxml文件你想在某个播放器中使用,你也可以使用fx:include :

<BorderPane fx:id="borderpane" ... fx:controller="main.java.Controller">
<center>
<fx:include source="custom_anchorpane.fxml"/>
</center>
</BorderPane>

关于java - 如何添加 <fx :root> component as a child in FXML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40998335/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com