【Swing/文本组件】定义自动换行的文本域

  • 文本域组件:Swing中任何一个文本域(JTextArea)都是JTestArea类型的对象。常用的构造方法如下
    • public JTextArea()
    • public JTextArea(String text)
    • public JTextArea( int rows,int columns)
    • public JTextArea(Document doc)
  • 定义自动换行的文本域
     /**
    *
    */
    package 常用窗体; import java.awt.Container; import javax.swing.JFrame;
    import javax.swing.JTextArea;
    import javax.swing.WindowConstants; /**
    * @author 粤晨下午9:29:54
    *
    */
    public class JTextAreaTest extends JFrame{
    public JTextAreaTest() { Container c=getContentPane();
    JTextArea jt=new JTextArea("文本域",6,6);
    jt.setLineWrap(true);
    c.add(jt);
    setVisible(true);
    setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); }
    /**
    * @param args
    */
    public static void main(String[] args) {
    // TODO Auto-generated method stub new JTextAreaTest();
    } }

    【Swing/文本组件】定义自动换行的文本域

上一篇:POJ 3481 SBT做法


下一篇:css渐变颜色在线制作