JScrollPane的用法
关于JScrollPane的作用就是在窗体缩小到一定的大小后,或者是出现的行数大于原来的设定长度时,就会出现拉动的轴;
public class JScrollDemo extends JFrame {
public static void main(String[] args) {
new JScrollDemo();
}
public JScrollDemo(){
JTextArea jTextArea = new JTextArea(10,50);
jTextArea.setText("欢迎..");
Container container = this.getContentPane();
JScrollPane jScrollPane = new JScrollPane(jTextArea);
container.add(jScrollPane);
this.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
this.setVisible(true);
this.setBounds(100,100,1000,400);
}
}