为什么添加了JScrollPane之后,滚动条和JTextArea都不显示了呢,代码如下
clientShow=newJTextArea();clientShow.setBounds(20,50,200,200);clientShow.setLineWrap(...
clientShow = new JTextArea();
clientShow.setBounds(20,50,200,200);
clientShow.setLineWrap(true);//激活自动换行功能
clientShow.setWrapStyleWord(true);//激活断行不断字功能
clientShow.setEditable(false);
scroll = new JScrollPane(clientShow);
scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
//add(clientShow);
add(scroll);
如下图,没有显示 展开
clientShow.setBounds(20,50,200,200);
clientShow.setLineWrap(true);//激活自动换行功能
clientShow.setWrapStyleWord(true);//激活断行不断字功能
clientShow.setEditable(false);
scroll = new JScrollPane(clientShow);
scroll.setVerticalScrollBarPolicy(JScrollPane.VERTICAL_SCROLLBAR_ALWAYS);
//add(clientShow);
add(scroll);
如下图,没有显示 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询