如何制作AWT Button()并使用ImageIcon()、Icon()?
如何将 GIF 图像应用到我的 AWT Button
?
AWT:不起作用
Icon warnIcon = new ImageIcon("/src/world.gif");
Button button1 = new Button(warnIcon);
Icon warnIcon = new ImageIcon("/src/world.gif");
JButton button1 = new JButton(warnIcon);
How can I apply a GIF image to my AWT Button
?
AWT: does not work
Icon warnIcon = new ImageIcon("/src/world.gif");
Button button1 = new Button(warnIcon);
Icon warnIcon = new ImageIcon("/src/world.gif");
JButton button1 = new JButton(warnIcon);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AWT 与 Swing 有点不同。
没有构造函数
button(image)
,因此你的“不工作”。查看了解如何扩展 AWT使用您自己的图像按钮来了解如何在 AWT 按钮上制作该图像。
AWT is a bit different from Swing.
There's no constructor
button(image)
, hence your "not working".Take a look at Learn how to extend the AWT with your own image buttons to see how to make that image on a AWT button.
回到您的三天历史记录,请尝试在您的本机操作系统上并使用 OpenJDK (也许确实是时候从 Oracle 下载一个稳定的 JDK,您只能在项目属性中进行切换):
通过 NetBeans 运行
编译为 JAR 文件或类
Back to your three days history, please try to run the code below on your native OS and by using OpenJDK (maybe it is really time to download a stable JDK from Oracle, you can only switch that in the project properties):
By running from NetBeans
compiled to a JAR file or class