gpt4 book ai didi

java - 使用 TableView.CONSTRAINED_RESIZE_POLICY 时 TableView 标题宽度错误

转载 作者:行者123 更新时间:2023-11-30 08:35:19 25 4
gpt4 key购买 nike

这实际上是一个已知的错误,steel 打开了 JavaFX 的错误报告,您可能会发现 here .

描述是:

当 ColumnResizePolicy 设置为 CONSTRAINED_RESIZE_POLICY 并且表格中的数据不适合可用表格 View 的高度(垂直滚动可见)时,标题的宽度不正确 - 但仅当 TableView 未获得焦点时。当 TableView 获得焦点时,标题就会获得适当的宽度。

问题是,我真的需要以某种方式修复它,但我找不到任何解决方法来做到这一点。

我试过了:

刷新()只是“跳”进跳出

otherGUIObject.requestFocus();
tableView.requestFocus(); //or getSelectionModel().Select(0)
otherGUIObject.requestFocus();

还有

tableView.setColumnResizePolicy(TableView.UNCONSTRAINED_RESIZE_POLICY);
tableView.setColumnResizePolicy(TableView.CONSTRAINED_RESIZE_POLICY);

但似乎没有任何效果。有人有什么想法吗?谢谢!

最佳答案

您走在正确的轨道上:您应该在 TableView 上调用 requestFocus()

以下片段的问题(来自您的问题)

otherGUIObject.requestFocus();
tableView.requestFocus(); //or getSelectionModel().Select(0)
otherGUIObject.requestFocus();

是当您调用requestFocus() 时,focusedProperty Node 的设置如预期的那样设置为 true,但这并不意味着控件实际上集中在 GUI 上(布局已更新)- 因为它只是当 JavaFX 应用程序线程有时间更新它时更新。在代码片段中,您连续进行了三个 requestFocus 调用:前两个将被优化,因此只有最后一个被执行(最有可能)。

解决方案是调用 requestLayout请求焦点后 TableView 上的方法,以确保焦点也在 GUI 上更新。之后,您可以将焦点设置在任何其他 Node 上(在示例中,我使用了 ScenefocusOwnerProperty 来获取当前选择的 Node ,然后在 TableView 获得焦点后,我再次聚焦此 Node)。

示例

// The current focus owner on the Scene
Node focusOwner = scene.getFocusOwner();

table.requestFocus();
table.requestLayout();

// Request focus on the currently focused Node
if(focusOwner != null)
focusOwner.requestFocus();
else
// request focus on any Node you want
textField.requestFocus();

关于java - 使用 TableView.CONSTRAINED_RESIZE_POLICY 时 TableView 标题宽度错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38264482/

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