說明:java將gif設置為icon是
然後用它填充一個大的圖 相當於半透明的背景
/**
*
* @author SAMSUNG
*/
import javax
import javax
import javax
import javax
/*
* /galuodo
*/
public class GTextArea extends JPanel {
JTextArea tex = null;
JLabel bg;
ImageIcon imageIcon = null;
public GTextArea() {
setLayout(null);
bg = new JLabel();
imageIcon = new ImageIcon(
tex = new JTextArea();
bg
tex
bg
tex
bg
tex
add(tex);//注意順序
add(bg);
setOpaque(false);
this
}
}
From:http://tw.wingwit.com/Article/program/Java/hx/201311/26914.html