我知道可以在TableView中创建一个填充了按钮thanks to jewelsea的列。
但我想知道是否可以直接在FXML 中定义。
作为一个例子,使用其他类型的人:
班级人员:
private final SimpleStringProperty birthDate = new SimpleStringProperty("");
然后在FXML中:
<TableView fx:id="table" layoutY="50.0" prefHeight="350.0" prefWidth="600.0">
<columns>
<TableColumn prefWidth="79.5" text="date of birth">
<cellValueFactory>
<PropertyValueFactory property="birthDate" />
</cellValueFactory>
</TableColumn>
</columns>
</TableView>
可以使用:
添加此元素@FXML private TableView<Person> table;
//...
table.getItems().add("12/02/1452");
如何用Buttons实现相同的目标?
答案 0 :(得分:0)
不,您不可能使用代码对其进行初始化
class ButtonListCell extends ListCell<MyObject> {
@Override
public void updateItem(MyObject obj, boolean empty) {
super.updateItem(obj, empty);
if (empty) {
setText(null);
setGraphic(null);
} else {
setText(obj.toString());
Button butt = new Button();
butt.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
System.out.println("clicked");
}
});
setGraphic(butt);
}
}
}
listview.setCellFactory(new Callback<ListView<MyObject>, ListCell>() {
@Override
public ListCell call(ListView<MyObject> param) {
return new ButtonListCell();
}
});
答案 1 :(得分:-1)
由于需要使用单元格工厂,因此无法在FXML中向表格列添加按钮。
你可以像jewelsea一样使用Java代码。