我想在屏幕中央制作一个具有动态宽度和高度的 JFXpopup。这是我目前拥有的:
这是应用程序的第一眼。要打开弹出窗口,我必须单击上下文菜单中的一个项目:
弹出窗口以 x 轴为中心,但显然不在 y 轴上。此外,当我调整舞台大小并重新打开弹出窗口时,大小不会改变。
现在看一些代码:
contextMenu.getNewLeaf().setOnAction(event -> {
popup.setPopupContent(createRegistrationFormPane());
popup.setAutoFix(true);
double width = globals.getPrimaryStage().getWidth() / 1.5;
double height = globals.getPrimaryStage().getHeight() / 1.5;
System.out.println("stage - width: " + globals.getPrimaryStage().getWidth() + "height: " + globals.getPrimaryStage().getHeight());
System.out.println("width: " + width + " height: " + height);
popup.getPopupContent().setPrefWidth(width);
popup.getPopupContent().setPrefHeight(height);
double anchorX = (globals.getPrimaryStage().getWidth() - width) / 2;
double anchorY = (globals.getPrimaryStage().getHeight() - height) / 2;
popup.show(rootPane, JFXPopup.PopupVPosition.TOP, JFXPopup.PopupHPosition.LEFT, anchorX, anchorY);
item.getChildren().add(new TreeItem<>(new Twitter()));
contextMenu.freeActionListeners();
});
globals.getPrimaryStage()
返回舞台。
rootPane
是井...第一个窗格。
以下是来自 的一些值system.out.println()
:
stage - width: 800.0height: 550.4000244140625
width: 533.3333333333334 height: 366.933349609375
stage - width: 1339.199951171875height: 684.7999877929688
width: 892.7999674479166 height: 456.5333251953125
如您所见,这些值确实发生了变化,但弹出窗口的大小没有改变。
任何帮助,将不胜感激。