gpt4 book ai didi

JavaFX TreeTableView - 列内显示值的中心

转载 作者:行者123 更新时间:2023-12-01 11:29:03 25 4
gpt4 key购买 nike

enter image description here

我需要将树 TableView 的列中显示的值居中,如何将位置从左侧更改为中心?

final TreeTableColumn<RootMaster, Integer> dataColumn = new TreeTableColumn<>("Data");
dataColumn.setEditable(false);
dataColumn.setMinWidth(300);
dataColumn.setCellValueFactory(new TreeItemPropertyValueFactory<RootMaster, Integer>("bu..."));

最佳答案

您需要在TreeTableColumn(以及cellValueFactory)上设置一个cellFactory

dataColumn.setCellFactory(col -> {
TreeTableCell<RootMaster, Integer> cell = new TreeTableCell<RootMaster, Integer>() {
@Override
public void updateItem(Integer item, boolean empty) {
super.updateItem(item, empty);
if (empty) {
setText(null);
} else {
setText(item.toString());
}
}
};

cell.setAlignment(Pos.CENTER);

return cell ;
});

关于JavaFX TreeTableView - 列内显示值的中心,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30571480/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com