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
}
}
}
이유는입니다.griffonActionId 이름으로 FXML의 구성을 덮어 씁니까?
내가 FXML이를 사용할 때 의미가 있습니다 : TestView.groovy
<Button fx:id="btn1" ...
을 그리고 지역 :
@FXML private Button btn1
...
btn1.text = 'Test'
이 적절한이다 버튼 텍스트를 설정하는 방법은?