有没有办法从javafx 2.2表格列中的有序表列中删除排序指示符/箭头?
答案 0 :(得分:2)
这可以通过css with
来完成.table-view .arrow {
-fx-background-insets: 0;
-fx-padding: 0;
-fx-shape: " ";
}
答案 1 :(得分:0)
这对我有用:
.no-sort-icon .column-header,
.no-sort-icon .column-header .arrow {
-fx-background-image: null;
}
然后将“ no-sort-icon”添加到tableView的样式类中。