当前位置: 代码迷 >> 综合 >> JavaFx TableView 自动调整列宽,列宽以百分比设置。
  详细解决方案

JavaFx TableView 自动调整列宽,列宽以百分比设置。

热度:78   发布时间:2023-12-11 15:59:37.0

javafx tableview 自动调整列宽。

table.getColumns().add(new TableColumn<>("Num") {{// 15%prefWidthProperty().bind(table.widthProperty().multiply(0.15));}
});
table.getColumns().add(new TableColumn<>("Filename") {
   {// 20%prefWidthProperty().bind(table.widthProperty().multiply(.2));
}});
table.getColumns().add(new TableColumn<>("Path") {
   {// 50%prefWidthProperty().bind(table.widthProperty().multiply(.5));
}});
table.getColumns().add(new TableColumn<>("Status") {{// 15%prefWidthProperty().bind(table.widthProperty().multiply(.15));}
});

  相关解决方案