import java.awt.Graphics; import java.awt.Image; import javax.swing.JPanel; /** * 背景面板 * 2012-6-23 */ public class BackgroundPanel extends JPanel { private Image image;// 背景图片 public BackgroundPanel() { setOpaque(false); setLayout(null); } public void setImage(Image image) { this.image = image; } /** * 画出背景 */ protected void paintComponent(Graphics g) { if (image != null) { // 图片宽度 int width = getWidth(); // 图片高度 int height = getHeight(); // 画出图片 g.drawImage(image, 0, 0, width, height, this); } super.paintComponent(g); } }
最近下载更多
wxm123 LV1
2022年5月20日
2508268826 LV1
2022年1月5日
oneonev LV1
2021年12月27日
qqqdaren LV1
2021年12月23日
我是我 LV1
2021年12月21日
lhxcool LV1
2021年12月3日
刹那芳华 LV1
2021年5月17日
ldx1234 LV4
2021年5月17日
waitingforyou LV20
2021年4月21日
toyaWDS LV1
2021年3月18日
最近浏览更多
zr20050503 LV2
6月27日
迷迭香 LV10
2022年9月21日
wxm123 LV1
2022年5月20日
jdsugdys LV1
2022年5月18日
linlin11
2022年5月2日
暂无贡献等级
. LV2
2022年4月23日
unknown_turtleshell LV3
2022年4月16日
kingoneyang LV13
2022年4月11日
wwwweey
2022年2月14日
暂无贡献等级
2508268826 LV1
2022年1月5日