说我有一个控制器
@FXML private ObservableList<String> myStrings = FXCollections.observableArrayList();
是否可以编写任何将以
myStrings
作为其项连接ListView的FXML?我的第一次尝试是:
<ListView>
<items fx:id="myStrings"/>
</ListView>
但这抱怨
fx:id
在该位置无效。我也试过<ListView items="${controller.myStrings}"/>
...但是它无法解决这个价值。
请不要发布此解决方案:
<ListView fx:id="myStringsListView"/>
// In controller
@FXML private ListView<String> myStringsListView;
@FXML public void initialize() {
myStringsListView.setItems(myStrings);
}
这就是我现在正在做的事情,但是这里的间接性和样板式让我很受伤。
最佳答案
以下作品
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.control.ListView?>
<BorderPane xmlns:fx="http://javafx.com/fxml/1" fx:controller="ListViewController">
<center>
<ListView items="${controller.myStrings}" />
</center>
</BorderPane>
使用以下控制器(我认为主要区别是您没有为列表定义访问器方法,或者命名不正确):
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
public class ListViewController {
private final ObservableList<String> myStrings = FXCollections.observableArrayList();
public ListViewController() {
myStrings.addAll("One", "Two", "Three");
}
public ObservableList<String> getMyStrings() {
return myStrings ;
}
}
这项快速测试:
import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;
public class ListViewItemsFromControllerTest extends Application {
@Override
public void start(Stage primaryStage) throws Exception{
primaryStage.setScene(new Scene(FXMLLoader.load(getClass().getResource("ListViewItemsFromController.fxml"))));
primaryStage.show();
}
public static void main(String[] args) {
launch(args);
}
}
产生
关于java - JavaFX将 Controller 变量绑定(bind)到组件属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/45363801/