怎么才能再设置大小后能出滚动条
坚持!!!
用ImageIcon类就可以!
好像不行
还有怎么再jpanel里加背景图片
你重写JPanel类的paintComponent(Graphics g)的方法
加入如下语句
public void paintComponent(Graphics g){
super.paintComponent(Graphics g);
g.drawImage(image,0,0,this);//image你得先构造好
}