怎么才能再设置大小后能出滚动条

坚持!!!
2006-04-10 22:46
用ImageIcon类就可以!
好像不行

2006-04-10 22:56

2006-04-10 23:09
2006-04-10 23:14
2006-04-11 00:40
还有怎么再jpanel里加背景图片
你重写JPanel类的paintComponent(Graphics g)的方法
加入如下语句
public void paintComponent(Graphics g){
super.paintComponent(Graphics g);
g.drawImage(image,0,0,this);//image你得先构造好
}

2006-04-11 10:12
2006-04-11 15:55
2006-04-11 16:30
2006-04-11 16:35
2006-04-11 19:02