我正在开发一个小型应用程序,我需要同时向用户显示两个窗口,但全屏显示(该应用程序将在双屏上为用户制作)。
我在NetBeans 8.0.1上使用JavaFx场景构建器2.0
我尝试了这个,但只有第二个窗口全屏显示。
public void showTwoScreens() {
try {
Parent root = FXMLLoader.load(getClass().getResource("ClientsOperationsWindow.fxml"));
Scene scene = new Scene(root);
globalStage.setScene(scene);
globalStage.setFullScreen(true);
globalStage.setResizable(true);
globalStage.show();
Stage anotherStage = new Stage();
Parent secondRoot = FXMLLoader.load(getClass().getResource("ClientsSearchWindow.fxml"));
Scene secondStage = new Scene(secondRoot);
secondStage.setScene(anotherScene);
secondStage.setFullScreen(true);
secondStage.show();
} catch (Exception ex) {
System.out.println(ex.getMessage());
}
}
可以全屏显示两个窗口吗?
非常感谢。
我认为你不能同时在两台显示器上全屏设置两个阶段,但是你可以通过强制设置阶段维度得到相同的结果。
为此,我们将使用javafx。阶段屏幕
,以获取连接的每个不同监视器的特性。然后我们将fxml文件加载到每个场景,并在其舞台上显示每个场景。使用屏幕。getBounds()
我们现在可以查看矩形的原点和尺寸,参考主屏幕。所以我们用这些矩形的边界设置每个阶段的边界。最后,我们将样式设置为“未装饰”。现在唯一缺少的功能是退出“全屏”模式组合键。
private Screen secondaryScreen;
@Override
public void start(Stage primaryStage) throws IOException {
Screen primaryScreen = Screen.getPrimary();
Parent root = FXMLLoader.load(getClass().getResource("Screen1.fxml"));
Scene scene = new Scene(root);
primaryStage.setScene(scene);
Rectangle2D bounds = primaryScreen.getBounds();
primaryStage.setX(bounds.getMinX());
primaryStage.setY(bounds.getMinY());
primaryStage.setWidth(bounds.getWidth());
primaryStage.setHeight(bounds.getHeight());
primaryStage.initStyle(StageStyle.UNDECORATED);
primaryStage.show();
// look for a second screen
Screen.getScreens().stream()
.filter(s->!s.equals(primaryScreen))
.findFirst().ifPresent(s->secondaryScreen = s);
if(secondaryScreen!=null){
Stage secondaryStage = new Stage();
Parent root2 = FXMLLoader.load(getClass().getResource("Screen2.fxml"));
Scene scene2 = new Scene(root2);
secondaryStage.setScene(scene2);
Rectangle2D bounds2 = secondaryScreen.getBounds();
secondaryStage.setX(bounds2.getMinX());
secondaryStage.setY(bounds2.getMinY());
secondaryStage.setWidth(bounds2.getWidth());
secondaryStage.setHeight(bounds2.getHeight());
secondaryStage.initStyle(StageStyle.UNDECORATED);
secondaryStage.show();
}
}
问题内容: 如何以与IE,Firefox和Opera兼容的方式使访问者的浏览器使用JavaScript全屏显示? 问题答案: 这与您使用JavaScript进入全屏显示的时间非常接近:
问题内容: 当您单击一个按钮时,我试图使JPanel进入全屏状态,而当您按Escape键时,则将其再次返回。 我设法使窗口全屏显示,但是由于添加组件的整个过程使它们从其他容器中删除,我最终得到了一个空白的JPanel。 我选择制作一个单独的JFrame来呈现全屏,其类如下(请注意,这是一个内部类,因此myPanel引用MyJFrame中已经存在的面板): 关于如何实现此目标还有其他聪明的主意吗?
我实现了一个GUI,它显示两个下拉菜单,您可以在其中选择要显示的两组不同的图形。但是,当我使用以下代码创建图形时: 然后我尝试更新情节(例如plt.tight_layout) 只有最后一个用“plt”调用的情节被更新。我如何编写我的代码,以便我可以引用两个图。 我还试图创建一个图,其中两个图形并排显示,但由于需要独立更新图形,我遇到了更多的问题。如果你能让它这样工作,太好了!我只是在想,修复之前的
这是我的代码,请记住,我在几天前学习了python,所以我的代码可能制作不正确,等等。我正在尝试制作一个窗口,该窗口将显示一些文本(测试版),并将显示两个小矩形,我想成为按钮。
描述 (Description) 您可以根据窗口的宽度和高度创建全屏模式。 例子 (Example) 以下示例演示了在Foundation中使用full screen modal - <!doctype html> <head> <meta charset = "utf-8" /> <meta http-equiv = "x-ua-compatible" conten
本文向大家介绍Python 多个图同时在不同窗口显示的实现方法,包括了Python 多个图同时在不同窗口显示的实现方法的使用技巧和注意事项,需要的朋友参考一下 Python的matplotlib包可以轻松的将数据可视化,博主最近遇到了一个问题,博主想同时在两个窗口展示两张图,但是代码运行结果总是显示一张图,把当前的图删掉之后才能显示另一张图。网上找了一些解决方案都是把它们放在一个窗口中,两个图片分