gpt4 book ai didi

javafx如何在运行时将按钮图像复制到另一个?

转载 作者:太空宇宙 更新时间:2023-11-04 13:39:33 25 4
gpt4 key购买 nike

我正在尝试将按钮的图像(无论它是什么)复制到另一个按钮,具体取决于某些条件。我正在使用 getGraphic() 但没有成功。谁能帮我吗?

最佳答案

我将使用 CSS 类。首先为 javaFX 应用程序设置 styleSheet:(https://docs.oracle.com/javase/8/javafx/user-interface-tutorial/apply-css.htm#CHDGHCDG)

然后将类添加到样式表:

.imageButton {
-fx-graphic: url("@../icons/document_32.png");
}

为按钮添加样式类,并且按钮有图像。

// Create button
Button btn = new Button("New Document");

// This command add style to button...
btn.getStyleClass().add("imageButton");

// Remove style and image
btn.getStyleClass().remove("imageButton");

关于javafx如何在运行时将按钮图像复制到另一个?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31358812/

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