如何更改 JFileChooser 中的默认 java 图标
我想更改 JFileChooser 中的内置 java 图标。 JFrame
类有一个 setIconImage()
方法用于设置图标。但我找不到 JFileChooser
类似的方法。无需更换咖啡杯,任何人都可以轻松识别出我的软件是用 java 编写的。谁能帮助我避免这种情况?
I want to change the inbuilt java icon from JFileChooser
. JFrame
class has a setIconImage()
method for set icon.But I couldn't find anything like that for JFileChooser
. Without changing that coffee cup anyone can easily recognize that my software is made with java. Can anyone can help me to avoid this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
IIRC JFileChooser 的图标取自传入的 jFrame。通过更改 JFrame 的图标,您还应该在 JFileChooser 中获得反映的图标更改。
代码:
使用的图标是来自父级的图标。
IIRC the icon for the JFileChooser is taken from the jFrame that is passed in. By changing the icon for the JFrame, you should also get the reflected icon change in the JFileChooser.
the code:
The icon that is used is the icon from the parent.
这可以帮助:
This could help:
请参阅:
See: