编辑: 我已经离开了原来的问题,就在下面。如果您希望使用下面的AnchorFX源代码和我的代码测试该问题,您应该能够重新创建问题。它也发生在其他一些情况下,与这两个问题中的问题相似:Resize SwingNode in Pane和How to resize Swing control which is inside SwingNode in JavaFX8?他们的答案都没有对我有帮助,但也许我找到的答案可以帮助别人在将来。
我在JTable
中有一个JScrollPane
,我需要将它嵌入到javafx应用程序中。我试图使用AnchorFX docking framework来做到这一点。我还需要这个SwingNode以某种方式位于Control
内(我试过的两个ScrollPane
和SplitPane
),这样我就可以向它添加一个ContextMenu
,这是一致的与应用程序的其余部分。
问题是,当我停靠时,并且'取消停靠'选项卡或只是调整窗口或窗口内窗格的大小,其中包含表格的JScrollPane
不会正确调整大小。
我修改了AnchorFX项目中的一个演示来显示我的问题:
public class AnchorFX_substations extends Application {
@Override
public void start(Stage primaryStage) {
DockStation station = AnchorageSystem.createStation();
Scene scene = new Scene(station, 1024, 768);
DockNode node1 = AnchorageSystem.createDock("Node", generateJTableNode());
node1.dock(station, DockNode.DockPosition.CENTER);
DockNode subNode = AnchorageSystem.createDock("subNode 1", generateJTableNode());
subNode.dock(station, DockNode.DockPosition.LEFT);
subNode.floatableProperty().set(false);
DockNode subNode2 = AnchorageSystem.createDock("subNode 2", generateJTableNode());
subNode2.dock(station, DockNode.DockPosition.LEFT);
AnchorageSystem.installDefaultStyle();
primaryStage.setTitle("AnchorFX SubStation");
primaryStage.setScene(scene);
primaryStage.show();
}
private Control generateJTableNode() {
ScrollPane contextMenuPane = new ScrollPane();
SwingNode swingNode = new SwingNode();
DefaultTableModel model = new DefaultTableModel();
JTable table = new JTable(model);
// Create a couple of columns
model.addColumn("Col1");
model.addColumn("Col2");
// Append a row
for(int i = 0; i < 200; i++) {
model.addRow(new Object[]{"col 1 row " + i, "col 2 row "+i});
}
JScrollPane scrollPane = new JScrollPane(table);
swingNode.setContent(scrollPane);
contextMenuPane.setFitToHeight(true);
contextMenuPane.setFitToWidth(true);
contextMenuPane.setContent(swingNode);
return contextMenuPane;
}
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}
答案 0 :(得分:5)
事实证明,SwingNode有一个父亲适当调整自己的大小,但SwingNode本身并没有调整大小,它根据其内容调整大小。我在DockNode停靠或取消停靠时进行以下调用解决了这个问题:
swingNode.setContent(swingNode.getContent());
int width = (int) swingNode.getParent().getBoundsInParent().getWidth();
int height = (int) swingNode.getParent().getBoundsInParent().getHeight();
swingNode.getContent().setPreferredSize(new Dimension(width, height));
我不完全确定为什么重置SwingNode的内容有助于解决它,但它似乎有帮助,所以我将那条线留在那里。
我可能会稍后编辑这个问题,以帮助其他任何人因为奇怪的SwingNode调整问题而受到阻碍,因为我现在认为它并不是特别容易搜索到的。