当我更新JavaFX版本时,一切都开始了:
当我点击我的FXML文件中的“Make Controller”选项时,会出现某种“额外更新”,导致我在点击此选项2次后得到类似的内容:
<AnchorPane fx:id="anchorWarrning" prefHeight="356.0" prefWidth="600.0"
xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/2.2"
fx:controller="GUI.Addons.Alerts.WarrningGUIController"
fx:controller="GUI.Addons.Alerts.WarrningGUIController"> <---- 2 TIMES! :(
<children>
此外,当我在Scene Builder中修改它时,没有.bak
文件在我的FXML文件旁边自动创建。
有人可以告诉我发生了什么吗?
答案 0 :(得分:0)
使用
<AnchorPane fx:id="anchorWarrning" prefHeight="356.0" prefWidth="600.0"
xmlns:fx="http://javafx.com/fxml"
fx:controller="GUI.Addons.Alerts.WarrningGUIController">