Java-如何使用图像设置窗格的背景?
我想知道是否有任何方法可以将 JPanel 的背景设置为图像而不仅仅是颜色。 谢谢,我正在研究博士。 爪哇
I'm wondering if there is any way to set a JPanel's background to an image instead of just a colour. Thanks and I'm working on dr. java
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一种选择是像此处那样扩展 JPanel。 JavaRanch 上还有另一个(更简单的)示例,使用相同的基本技术。
One option is to extend JPanel as they do here. There's another (simpler) example using the same basic technique on JavaRanch.
您可以对 JPanel 进行子类化 - 这是我的 ImagePanel 的摘录,它将图像放置在 5 个位置中的任意一个位置:上/左、上/右、中/中、下/左或下/右:
You can subclass JPanel - here is an extract from my ImagePanel, which puts an image in any one of 5 locations, top/left, top/right, middle/middle, bottom/left or bottom/right: