gpt4 book ai didi

java - 防止仅由用户调整 TableColumn 的大小

转载 作者:行者123 更新时间:2023-12-01 19:48:12 27 4
gpt4 key购买 nike

有没有办法阻止用户调整TableView中的任何或至少所有JavaFX TableColumn的大小,同时仍然允许调整大小策略起作用?

存在 TableColumn::setResizing,但在阻止用户调整 TableColumn 大小的同时,它还阻止调整大小策略调整 TableColumn 大小>。

最佳答案

一个快速的解决方案可能是添加事件过滤器,以便在表标题行上拖动鼠标。创建自定义 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类的源代码后,负责调整大小的节点确实是矩形。不幸的是,没有为此矩形设置样式类。因此,假设 HeaderRow 中的所有矩形都是用于调整大小的目的,我们查找所有 Rectangle 节点并设置事件过滤器。

内部 PRESSED-DRAGGED-RELEASED 处理程序设置用于调整大小,ENTER-EXIT 处理程序设置用于更改光标。因此,与其为 5 种类型的事件设置过滤器,不如为一种 super 事件 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);
}
}
}

不保留矩形引用(如演示中的 HeaderRow)的原因是,每次重新对齐列时都会生成一组新的矩形。所以你不能依赖任何 Rectangle 引用。为了避免重复的过滤器,我们创建一个处理程序引用,首先删除然后添加处理程序。

关于java - 防止仅由用户调整 TableColumn 的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52415358/

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