本人刚刚接触swing,对于控件的使用不是很了解,在此请教大家一个问题:代码如下:
textArea = new JTextArea();
//textArea.setBounds(116, 72, 178, 69);
textArea.setText("");
textArea.setLineWrap(true);
textArea.setWrapStyleWord(true);
jScrollPane =new JScrollPane(textArea);
jScrollPane.setPreferredSize(new Dimension(80,100));
jScrollPane.setVerticalScrollBarPolicy(ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS);
contentPane.add(jScrollPane,BorderLayout.CENTER);
//contentPane.add(jScrollPane);
运行的结果如下:
居然没有显示文本域,更不用说滚动条啦,在此请教各位大侠的帮助,谢谢你们的!!
------解决方案--------------------
简单
你没设置滚动条的jScrollPane.setBount(0,0,0,0);