Wird @FXML für jede Deklaration oder nur für die erste benötigt?Wird @FXML für jede Deklaration benötigt?
In anderen Worten, sollte ich
@FXML
public Label timerLabel = new Label();
@FXML
public TextField mainTextField, projectTextField ;
@FXML
public Button goButton, deleteAllButton ;
@FXML
public ComboBox<String> projectComboBox ;
@FXML
public TableView<Entry> mainTable ;
@FXML
public TableColumn<Entry, String> titleColumn, timeColumn, dateColumn ;
@FXML
public TableColumn<Entry, Boolean> checkColumn, buttonColumn ;
@FXML
public checkBox checkAllCheckBox ;
Oder
@FXML
public Label timerLabel = new Label();
public TextField mainTextField, projectTextField ;
public Button goButton, deleteAllButton ;
public ComboBox<String> projectComboBox ;
public TableView<Entry> mainTable ;
public TableColumn<Entry, String> titleColumn, timeColumn, dateColumn ;
public TableColumn<Entry, Boolean> checkColumn, buttonColumn ;
public checkBox checkAllCheckBox ;
Vielen Dank!
Ausprobieren beide;) – ItachiUchiha
Ich kann keine Unterschiede sehen: | – Romeo
Ich habe nie die zweite Lösung gesehen. Ich denke, das ist nicht möglich. versuchen Sie es einfach –