是否有一种方法可以防止TableColumn
中的任何JavaFX TableView
被用户调整大小,同时仍然允许调整大小策略起作用?
存在TableColumn::setResizable
,但是在阻止用户调整TableColumn
的大小的同时,还阻止了“调整大小策略”调整TableColumn
的大小。
答案 0 :(得分:3)
一种快速的解决方案是在表标题行上添加事件过滤器以供鼠标拖动。创建一个自定义tableView并在标题行上添加事件筛选器,如下所示:
class CustomTableView<S> extends TableView<S>{
private Node headerRow;
@Override
protected void layoutChildren() {
super.layoutChildren();
if(headerRow ==null){
headerRow = (Region) lookup("TableHeaderRow");
headerRow.addEventFilter(MouseEvent.MOUSE_DRAGGED, MouseEvent::consume);
}
}
}
显然,副作用是您现在无法重新对齐列。如果您只想调整大小,那么请查找负责调整大小的节点,然后在其上而不是整个标头行上添加过滤器。
以下是一个快速工作的演示,其中禁用了列的大小调整和重新对齐,同时仍然允许“调整大小”策略。
import javafx.application.Application;
import javafx.beans.property.SimpleStringProperty;
import javafx.beans.property.StringProperty;
import javafx.collections.FXCollections;
import javafx.collections.ObservableList;
import javafx.scene.Node;
import javafx.scene.Scene;
import javafx.scene.control.TableColumn;
import javafx.scene.control.TableView;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.Region;
import javafx.stage.Stage;
public class TableResizeRestrictionDemo extends Application {
@Override
public void start(Stage primaryStage) throws Exception {
ObservableList<Person> persons = FXCollections.observableArrayList();
persons.add(new Person("Harry","John","LS"));
persons.add(new Person("Mary","King","MS"));
persons.add(new Person("Don","Bon","CAT"));
persons.add(new Person("Pink","Wink","IND"));
CustomTableView<Person> tableView = new CustomTableView<>();
TableColumn<Person, String> fnCol = new TableColumn<>("First Name");
fnCol.setCellValueFactory(param -> param.getValue().firstNameProperty());
TableColumn<Person, String> lnCol = new TableColumn<>("Last Name");
lnCol.setCellValueFactory(param -> param.getValue().lastNameProperty());
TableColumn<Person, String> cityCol = new TableColumn<>("City");
cityCol.setCellValueFactory(param -> param.getValue().cityProperty());
tableView.getColumns().addAll(fnCol, lnCol, cityCol);
tableView.setItems(persons);
tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);
Scene sc = new Scene(tableView);
primaryStage.setScene(sc);
primaryStage.show();
}
class Person{
private StringProperty firstName = new SimpleStringProperty();
private StringProperty lastName = new SimpleStringProperty();
private StringProperty city = new SimpleStringProperty();
public Person(String fn, String ln, String cty){
setFirstName(fn);
setLastName(ln);
setCity(cty);
}
public String getFirstName() {
return firstName.get();
}
public StringProperty firstNameProperty() {
return firstName;
}
public void setFirstName(String firstName) {
this.firstName.set(firstName);
}
public String getLastName() {
return lastName.get();
}
public StringProperty lastNameProperty() {
return lastName;
}
public void setLastName(String lastName) {
this.lastName.set(lastName);
}
public String getCity() {
return city.get();
}
public StringProperty cityProperty() {
return city;
}
public void setCity(String city) {
this.city.set(city);
}
}
class CustomTableView<S> extends TableView<S>{
private Node headerRow;
@Override
protected void layoutChildren() {
super.layoutChildren();
if(headerRow ==null){
headerRow = (Region) lookup("TableHeaderRow");
headerRow.addEventFilter(MouseEvent.MOUSE_DRAGGED, MouseEvent::consume);
}
}
}
}
更新:: 在检查NestedTableColumnHeader类中的源代码之后,负责调整大小的节点确实是Rectangle。不幸的是,这个Rectangle没有设置样式类。因此,假设HeaderRow中的所有矩形都是出于调整大小目的,我们将查找所有Rectangle节点并设置事件过滤器。
内部PRESSED-DRAGGED-RELEASED处理程序设置为调整大小,而ENTER-EXIT处理程序设置为更改光标。因此,与其为5种类型的事件设置过滤器,不如对一个超级事件MouseEvent.ANY进行设置。这也将解决更改光标的问题。
class CustomTableView<S> extends TableView<S> {
private final EventHandler<MouseEvent> consumeEvent = MouseEvent::consume;
@Override
protected void layoutChildren() {
super.layoutChildren();
final Set<Node> dragRects = lookup("TableHeaderRow").lookupAll("Rectangle");
for (Node dragRect : dragRects) {
dragRect.removeEventFilter(MouseEvent.ANY, consumeEvent);
dragRect.addEventFilter(MouseEvent.ANY, consumeEvent);
}
}
}
不保留Rectangles引用的原因(如演示中的HeaderRow)是,每次重新对齐列时,都会生成一组新的Rectangles。因此,您不能依赖任何Rectangle参考。为了避免重复的过滤器,我们创建了一个处理程序引用,首先删除然后添加处理程序。