当前位置: 技术问答>java相关
请问在applet中如何实现滚动条?
来源: 互联网 发布时间:2015-11-01
本文导语: 请问在applet中如何实现滚动条? | 直接加Scrollbar | 假设this指向一个继承自JFrame的对象 JTextArea str; JScrollPane sp1=new JScrollPane(str); Container contentPane=this.getContentPane(); contentPane.ad...
请问在applet中如何实现滚动条?
|
直接加Scrollbar
|
假设this指向一个继承自JFrame的对象
JTextArea str;
JScrollPane sp1=new JScrollPane(str);
Container contentPane=this.getContentPane();
contentPane.add(sp1);
JTextArea str;
JScrollPane sp1=new JScrollPane(str);
Container contentPane=this.getContentPane();
contentPane.add(sp1);