Jscrollpane类:带滚动条的面板
Jscrollpane类:带滚动条的面板
以下代码展示如何给界面加上滚动条:
package com.cxf.gui.swing.jscroll;
import javax.swing.*;
import java.awt.*;
public class TestForJscroll {
public static void main(String[] args) {
new MyFrame().init();
}
}
class MyFrame extends JFrame{
public void init(){
setVisible(true);
setBounds(200,200,700,300);
getContentPane().add(new JScrollPane(new JTextArea(50,50)));
}
}
输出结果:
滚动条的效果需要用文本框来呈现。
整体结构是文本框加入面板中,面板加入JFrame中。
把文本框加入面板中的方法为:JScrollPane类构造对象时,以文本框对象作为参数。
面板加入JFrame中则采用add的方式。