gpt4 book ai didi

java - 为什么我的 javafx 应用程序中缺少标题栏?

转载 作者:行者123 更新时间:2023-12-01 18:51:05 28 4
gpt4 key购买 nike

公共(public)类 Hello 扩展应用程序{

@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("hellofxml.fxml"));
Scene scene = new Scene(root,500,500);
stage.setScene(scene);
stage.setTitle("hello world");
// stage.initStyle(StageStyle.TRANSPARENT);
stage.show();
}


public static void main(String[] args) {
launch(args);
System.out.println("hello");
}

}

这段代码的输出给了我一个简单的窗口,没有任何关闭、最小化、最大化按钮,换句话说,是一个无标题的窗口

我想知道问题出在哪里

图片链接为

https://ibb.co/5YNfR1G https://ibb.co/Hq9pM0S

fxml代码

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

<?import javafx.scene.control.Button?>
<?import javafx.scene.layout.AnchorPane?>


<AnchorPane id="AnchorPane" prefHeight="400.0" prefWidth="600.0" xmlns:fx="http://javafx.com/fxml/1" xmlns="http://javafx.com/javafx/11.0.1" fx:controller="Hello.HellofxmlController">
<children>
<Button fx:id="ok_btn" layoutX="238.0" layoutY="174.0" mnemonicParsing="false" text="ok" />
</children>
</AnchorPane>

最佳答案

这是 GTK3 和 JavaFX 的一个已知问题,已得到解答 here

关于java - 为什么我的 javafx 应用程序中缺少标题栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59738705/

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