码迷,mamicode.com
首页 > 编程语言 > 详细

javaSwing文本域文件

时间:2016-05-23 22:44:35      阅读:241      评论:0      收藏:0      [点我收藏+]

标签:

public class JTextAreaTest extends JFrame{
    public JTextAreaTest()
    {    
        setSize(200, 400);
        setTitle("定义自动换行的文本域");
        setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        
        Container cp=getContentPane();
        JTextArea jt=new JTextArea("文本域",6,6);
        JScrollPane js=new JScrollPane(jt);
        cp.add(js);
        setVisible(true);
        
    }
    public static void main(String[] args) {
        new JTextAreaTest();
    }

}

javaSwing文本域文件

标签:

原文地址:http://www.cnblogs.com/douyunqian3520/p/5521596.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!