首页>代码>java swing开发进销存管理系统>/SalesManagerment/src/org/rancode/framework/util/ImagePanel.java
package org.rancode.framework.util;
/**
 * 
 * 说明:自定义带有背景图片的面板工具类
 * 
 * @author LS
 * 
 * */

import java.awt.Graphics;
import java.awt.Image;
import java.awt.Toolkit;

import javax.swing.JPanel;

public class ImagePanel extends JPanel {
	
	// 创建图像变量
	Image im;

	// 构造函数
	public ImagePanel(Image im) {
		this.im = im;// 初始化图像变量
		// 获取当前屏幕宽高
		int width = Toolkit.getDefaultToolkit().getScreenSize().width;
		int height = Toolkit.getDefaultToolkit().getScreenSize().height;
		this.setSize(width, height);
	}

	// 绘制组件
	public void paintComponent(Graphics g) {
		// 继承父类方法
		super.paintComponent(g);
		g.drawImage(im, 0, 0, this.getWidth(), this.getHeight(), this);
	}
}
最近下载更多
Zyy19820821  LV2 9月24日
ma406805131  LV15 6月25日
1542457015  LV3 2023年11月15日
zcfhh1  LV2 2023年10月3日
微信网友_6608533750566912  LV2 2023年8月16日
Assoc洛晓  LV2 2023年7月24日
2385649653  LV7 2023年6月17日
buhuia  LV4 2023年6月9日
y1214435276  LV9 2023年3月22日
漫步的海星  LV4 2023年3月14日
最近浏览更多
lz88888  LV12 10月17日
Zyy19820821  LV2 9月16日
luoyanglin  LV2 9月14日
liulian666  LV2 7月19日
大明代码时代  LV7 7月1日
heshao  LV2 6月4日
2860615178  LV4 5月29日
hellolu21  LV10 5月16日
strugglerLU  LV1 5月13日
顶部 客服 微信二维码 底部
>扫描二维码关注最代码为好友扫描二维码关注最代码为好友