码迷,mamicode.com
首页 > 编程语言 > 详细

JavaFx TableView 文本换行

时间:2021-05-25 17:45:25      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:str   ring   round   return   code   text   ping   private   new   

TableView 的TableColumn有文本换行的需求。

方法如下:

    @FXML
    private TableColumn nameCol;

    nameCol.setCellValueFactory(new PropertyValueFactory<>("name")); //姓名  初始化nameCol

   //设置nameCol中的文本可换行
    nameCol.setCellFactory(tc -> {

    TableCell<StaffModel,String> cell = new TableCell<>();
    Text text = new Text();
    cell.setGraphic(text);
    cell.setPrefHeight(Control.USE_COMPUTED_SIZE);
    text.wrappingWidthProperty().bind(nameCol.widthProperty());
    text.textProperty().bind(cell.itemProperty());
    return cell;
});

 

参考

JavaFx TableView 文本换行

标签:str   ring   round   return   code   text   ping   private   new   

原文地址:https://www.cnblogs.com/yiyezhouming/p/14806133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!