JavaFX 中的应用程序图标

发布于 2024-08-13 09:50:39 字数 339 浏览 2 评论 0原文

使用 JavaFX 1.2,我试图在我的应用程序上获取自定义图标,但它们被完全忽略。 我做错了什么还是一个错误?

Stage {
title: "My App"
width: 1024
height: 768
scene: bind current_scene
iconified:true;
icons:[
    Image { url: "{__DIR__}res/icon16x16.png" },
    Image { url: "{__DIR__}res/icon32x32.png" },
    Image { url: "{__DIR__}res/icon64x64.png" }
  ]
}

Using JavaFX 1.2 I am trying to get custom icons on my app and they are being totally ignored.
Am I doing something wrong or is it a bug?

Stage {
title: "My App"
width: 1024
height: 768
scene: bind current_scene
iconified:true;
icons:[
    Image { url: "{__DIR__}res/icon16x16.png" },
    Image { url: "{__DIR__}res/icon32x32.png" },
    Image { url: "{__DIR__}res/icon64x64.png" }
  ]
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

私野 2024-08-20 09:50:39

我成功了。看来是用 import 语句解决了。最有可能的
导入javafx.scene.image.*;
但当时发生了很多事情:)

I got it working. It seems that it was solved with an import statement. Most likely
import javafx.scene.image.*;
but there was a lot happening at the time :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文