0
グリフォン上書きされ2.10.0グリフォンFXMLボタンのテキスト値を
FXML:
<Button layoutX="172.0" layoutY="45.0" JavaFXUtils.griffonActionId="click2"
mnemonicParsing="false" text="Test"
prefWidth="200.0"
/>
TestView.groovy:
void initUI() {
builder.application(title: application.configuration['application.title'], name: "settingsWindow",
centerOnScreen: true, resizable: false) {
scene {
def node = loadFromFXML("views/test.fxml")
connectActions(node, controller)
inputx.textProperty().bindBidirectional(model.inputProperty())
fxml node
}
}
}
なぜtext="Test"
griffonActionIdの名前で上書きされたFXMLの設定?
私はFXMLでこれを使用するときにそれが動作:TestView.groovy
<Button fx:id="btn1" ...
をまたに:
@FXML private Button btn1
...
btn1.text = 'Test'
は、この適正ですボタンのテキストを設定する方法は?