使用图像作为 JPanel 和 JButton 的背景

发布于 2024-12-19 15:48:25 字数 81 浏览 2 评论 0原文

我正在尝试使用在 Photoshop 中制作的图像作为 GUI 的背景。我该怎么做?我还制作了一些图像,我想在执行操作后在按钮背景中显示......

I am trying to use an image I made in photoshop as the background for my GUI. How do I do that? also I made some images I want to display in the button backgrounds after the action is performed...

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

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

发布评论

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

评论(1

寄人书 2024-12-26 15:48:25

对于 JButton,使用这个:

JButton button = new JButton("Button Name", new ImageIcon("foo.png");

面板更有趣一些。不过,这是一个很好的方法:

ImagePanel panel = new ImagePanel(new ImageIcon("foo.png").getImage());

For the JButton, use this:

JButton button = new JButton("Button Name", new ImageIcon("foo.png");

The Panel is a bit more interesting. This is a good method, though:

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