JOptionPane 背景图像
如何设置JOptionPane的背景图片?我想在 JOptionPane 的背景上显示不同的图像。
How to set background Image of JOptionPane? I want to show a different image on background of an JOptionPane.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以扩展 JOptionPane 类并重写 Paint 方法。
编辑:
根据图像分辨率和质量,您可以在 WindowResize 事件期间使用 AffineTransform 拉伸它,而不会出现太大失真。这将使您能够处理下面提到的 JOptionPane 和图像大小差异。
You could extend the JOptionPane class and override the paint method.
Edit:
Depending on the image resolution and quality you might be able to stretch it with an AffineTransform during the WindowResize events without to much distortion. This would let you handle the JOptionPane and image size discrepancies mentioned below.