晚上好

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

java - 带滚动 Pane 的可伸缩JTextArea-LMLPHP
(来源:hostingpics.net

我的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"));


谢谢

最佳答案

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

关于java - 带滚动 Pane 的可伸缩JTextArea,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/2760690/

10-09 05:54