文本域组件
Posted dulute
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文本域组件相关的知识,希望对你有一定的参考价值。
public class JTextAreaTest extends JFrame{ public JTextAreaTest() { // TODO Auto-generated constructor stub setSize(200,100); setTitle("定义自动换行的文本域"); setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); Container c = getContentPane(); JTextArea jt = new JTextArea("文本域",6,6); jt.setLineWrap(true); c.add(jt); setVisible(true); } public static void main(String[] args) { // TODO Auto-generated method stub new JTextAreaTest(); } }
以上是关于文本域组件的主要内容,如果未能解决你的问题,请参考以下文章