gpt4 book ai didi

JavaFX:使用 fxml 添加应用程序图标

转载 作者:行者123 更新时间:2023-12-02 14:30:43 29 4
gpt4 key购买 nike

我想向我的程序添加应用程序图标。我尝试按照以下方式执行此操作,但没有成功:

primaryStage.getIcons().add(new Image(Main.class.getResourceAsStream("lock.png")));
primaryStage.getIcons().add(new Image(Controller.class.getResourceAsStream("lock.png")));
final Parent root = FXMLLoader.load(getClass().getResource("passwordGenerator.fxml"));

primaryStage.getIcons().add(new Image("lock.png"));

我还尝试在没有 FXML 文件的情况下执行此操作,并且成功了。

如何使用 FXML 文件添加应用程序图标?

最佳答案

这是适合我的解决方案:主类:

public class JavaFXIcons extends Application {
@Override
public void start(Stage stage) throws Exception {
Parent root = FXMLLoader.load(getClass().getResource("FXMLDocument.fxml"));

Scene scene = new Scene(root);
stage.getIcons().add(new Image(JavaFXIcons.class.getResourceAsStream("stackoverflow.jpg"))) ;
stage.setScene(scene);
stage.show();
}

/**
* @param args the command line arguments
*/
public static void main(String[] args) {
launch(args);
}
}

FXML 文件:

<?xml version="1.0" encoding="UTF-8"?>
<?import java.lang.*?>
<?import java.util.*?>
<?import javafx.scene.*?>
<?import javafx.scene.control.*?>
<?import javafx.scene.layout.*?>
<AnchorPane id="AnchorPane" prefHeight="200" prefWidth="320" xmlns:fx="http://javafx.com/fxml/1" fx:controller="javafxicons.FXMLDocumentController">
<children>
<Button layoutX="126" layoutY="90" text="Click Me!" onAction="#handleButtonAction" fx:id="button" />
<Label layoutX="126" layoutY="120" minHeight="16" minWidth="69" fx:id="label" />
</children>
</AnchorPane>

关于JavaFX:使用 fxml 添加应用程序图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46006633/

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