首先,我告诉你我的代码。
COMPONENT
public class Schuiver extends VBox{
private final SchuiverCompanion companion;
public Schuiver(String text) {
try {
FXMLLoader loader = new FXMLLoader(
Schuiver.class.getResource("nuleenschuiver.fxml"));
loader.setRoot(this);
this.companion = new SchuiverCompanion();
loader.setController(companion);
companion.setText(text);
loader.load();
} catch (IOException exception) {
throw new RuntimeException(exception);
}
}
}
COMPONENTCONTROLLER
public class SchuiverCompanion {
public TextField kleurveld;
public Label titel;
public Slider schuiver;
public void initialize() {
kleurveld.textProperty().bindBidirectional(schuiver.valueProperty(),
new NumberStringConverter());
}
public void setText(String text){
titel.setText(text);
}
}
COMPONENTFXML
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.*?>
<?import javafx.scene.control.*?>
<?import java.lang.*?>
<?import javafx.scene.layout.*?>
<fx:root fx:id="vbox" minHeight="-1.0" prefHeight="-1.0" prefWidth="-1.0" spacing="5.0" type="javafx.scene.layout.VBox" xmlns="http://javafx.com/javafx/8" xmlns:fx="http://javafx.com/fxml/1" fx:controller="kleurenkiezer.SchuiverCompanion">
<children>
<Label fx:id="titel" alignment="TOP_LEFT" text="Hier een titel" />
<HBox prefHeight="44.0" prefWidth="299.0">
<children>
<Slider fx:id="schuiver" prefHeight="14.0" prefWidth="215.0" />
<TextField fx:id="kleurveld" prefHeight="25.0" prefWidth="76.0" />
</children>
</HBox>
</children>
</fx:root>
就像你看到我的Component询问一个将放置在Label中的String, 问题是,如果您创建如下对象,则无法在fxml文件中传递参数:
<Schuiver fx:id="red" GridPane.columnIndex="1" GridPane.rowIndex="0"/>
<Schuiver fx:id="blue" GridPane.columnIndex="1" GridPane.rowIndex="1"/>
所以我的问题是,如果我使用我的组件启动程序,如何更改标签'Titel'的文本?标题应该像修复:id。
答案 0 :(得分:9)
在JavaFX 8中,您可以通过使用@NamedArg(...)
注释构造函数参数来执行此操作:
public class Schuiver extends VBox{
private final SchuiverCompanion companion;
public Schuiver(@NamedArg("text") String text) {
// ...
}
}
然后你可以在FXML中使用参数:
<Schuiver fx:id="red" text="red" GridPane.columnIndex="1" GridPane.rowIndex="0"/>
<Schuiver fx:id="blue" GridPane.columnIndex="1" GridPane.rowIndex="1">
<text>
<String fx:value="blue" />
</text>
</Schuiver>
答案 1 :(得分:1)
概述
尽管OP已经选择了最佳答案,但从评论中看,似乎有些混乱,并且所选答案并未彻底回答他们的问题,并且缺少信息,因此我发布了我认为是完整/完整答案的内容:
在JavaFX中创建自定义组件时,如果您想在创建组件时为其提供一个或多个默认值,则不能简单地向默认构造函数添加参数,因为当JavaFX执行此操作时,它会在后台使用这是FXML加载的东西。
要解决这个难题,只有在参数使用@NamedArg(“此处为参数名”)批注的情况下,我们才能向默认构造函数添加参数。这允许人们提供定制组件以在运行时间值时它们被构造以编程方式或通过FXML。
详细信息和示例
自定义组件控制器构造器
public MyCustomComponent(@NamedArg("foo") String foo) { }
在幕后,JavaFX意识到组件的构造函数现在有一个用@NamedArg注释的参数,它将在当前正在使用组件的任何地方反映出来。查找或创建一个FXML文档,然后将您的组件放入文本中。然后,您应该能够从FXML设置命名参数,并且您的IDE的intellisense也应该支持该参数。
通过FXML将值添加到组件
<MyCustomComponent foo="myStringValue"/>
您可以通过编程方式设置参数:
MyCustomComponent myComp = new MyCustomComponent("myStringValue");
现在,对OP问题的当前选定答案没有提及这一点,但是据我所知,您还需要采取进一步的措施,否则这些都不起作用。控制器类必须具有与命名参数匹配的属性。我相信这是在后台初始化FXML所必需的,但是我可能是错的。 Java的大部分属性如下所示:
private StringProperty foo = new SimpleStringProperty();
public String getFoo()
{
return foo.get();
}
public void setFoo(String value)
{
this.foo.set(value);
}
public StringProperty fooProperty()
{
return foo;
}
结论
我想在此处添加此内容,因为先前的答案确实回答了问题,但还不能完全回答问题,并且虽然OP确实能够找出问题,但该答案没有提及OP实现/更改了将其解决的内容之所以工作,是因为起初它并不能解决问题。我知道100%可以正常使用。