Java 小程序中的背景图像
如何在 Java Applet 中设置背景图像?
假设我希望 background.gif 成为我的 java applet 类中的背景,但我该怎么做呢?
How do you set a background image in Java Applets?
Let's say I want background.gif to be the background in my java applet class but how would I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为没有一个函数可以做到这一点。但是您可以扩展一个Panel(它可以充当一个简单的组件容器)并重写paint 方法以在背景中绘制图像。
下面是一个示例程序。希望这有帮助。
I dont think there is a function to do this. But you can extend a Panel (which can act as a simple container of components) and override the paint method to draw an image in the background.
The following is a sample program. Hope this helps.