带滚动窗格的可伸缩JTextArea

时间:2010-05-03 19:37:27

标签: java swing jscrollpane jtextarea

Goodevening

如何在netbeans中有一个JTextArea(参见图片)

alt text http://img10.hostingpics.net/pics/968190Sans_titre.png

我的JTextArea代码:

   JTextArea  infoArea = new JTextArea(10,10);
   infoArea.setLineWrap(true);
   infoArea.setFont(police);
   infoArea.setForeground(Color.YELLOW);
   infoArea.setBackground(Color.BLACK);
   infoArea.setEditable(false);

   JScrollPane scroll = new JScrollPane(infoArea);
   scroll.setHorizontalScrollBarPolicy(JScrollPane.HORIZONTAL_SCROLLBAR_NEVER);
   scroll.setBorder(BorderFactory.createEmptyBorder(5, 0, 10, 0));
   scroll.setPreferredSize(new Dimension(sousFrame.getWidth(),90));
   scroll.setFont( new Font("Arial", Font.BOLD, 13));
   scroll.setBorder(BorderFactory.createTitledBorder("Output"));

谢谢

1 个答案:

答案 0 :(得分:1)

我不确定NetBeans使用什么,但我们在上一家公司使用flexdock在Java Swing应用程序中创建可停靠窗口(假设这是“可伸缩”的意思)。