gpt4 book ai didi

javafx - 如何根据屏幕分辨率javafx在fxml中动态设置首选宽度和高度

转载 作者:行者123 更新时间:2023-12-05 08:27:38 25 4
gpt4 key购买 nike

我是 javafx 的新手。是否可以根据屏幕分辨率在 fxml 文件中动态设置首选宽度和高度?我知道如何获取屏幕分辨率并将其设置为舞台:

Screen screen = Screen.getPrimary(); 
Rectangle2D bounds = screen.getVisualBounds();
stage.setWidth(bounds.getWidth());
stage.setHeight(bounds.getHeight());

我的问题是关于在 fxml 文件中动态设置 prefWidth 和 prefHeight。我还想知道我是否可以通过编程方式更改 fxml 文件中的属性值,我正在使用场景生成器。

最佳答案

您可以(某种程度上)在 FXML 中执行此操作,但不能使用 Scene Builder(据我所知)。您可以使用 fx:factory属性获取主屏幕并在 <fx:define> block 中定义它.然后使用 expression binding绑定(bind) prefWidthprefHeight根 Pane 的宽度和屏幕高度。

这看起来像

MaximizedPane.fxml:

<?xml version="1.0" encoding="UTF-8"?>

<?import javafx.scene.layout.StackPane?>
<?import javafx.scene.control.Label?>
<?import javafx.stage.Screen?>

<StackPane xmlns:fx="http://javafx.com/fxml/1"
prefWidth="${screen.visualBounds.width}"
prefHeight="${screen.visualBounds.height}" >
<fx:define>
<Screen fx:factory="getPrimary" fx:id="screen"/>
</fx:define>
<Label text="A maximized pane"/>
</StackPane>

这是一个快速测试工具:

import java.io.IOException;

import javafx.application.Application;
import javafx.fxml.FXMLLoader;
import javafx.scene.Scene;
import javafx.stage.Stage;

public class MaximizedFXMLPane extends Application {

@Override
public void start(Stage primaryStage) throws IOException {
Scene scene = new Scene(FXMLLoader.load(getClass().getResource("MaximizedPane.fxml")));
primaryStage.setScene(scene);
primaryStage.show();
}

public static void main(String[] args) {
launch(args);
}
}

(无法使用 Scene Builder 执行此操作的原因是它不支持在 FXML 中插入 <fx:define> block 的任何机制,等等。)

关于javafx - 如何根据屏幕分辨率javafx在fxml中动态设置首选宽度和高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34487126/

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