我知道可以在TableView中创建一个用thanks to jewelsea按钮填充的列。

但是我想知道是否有可能直接在FXML 中定义它

例如,对于其他类型,可以这样做:

类(class)人员:

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");

如何用Button实现相同的目的?

最佳答案

不,不可能用代码初始化它

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();
    }

});

10-02 02:53