首页上一页 1 下一页尾页 1 条记录 1/1页
文章中给文本域添加滚动条的方法和之前的咋不一样?区别在哪?
添加滚动效果有两种方法:
(1)当JFrame()窗口的面板布局不为null布局时,给JTextarea添加滚动效果。
JTextarea textarea=new JTextarea();
JScrollPane() scroll=new JScrollPane(textarea);
(2)当JFrame()窗口的面板布局为null布局时给JTextarea添加滚动效果
JScrollPane scrollPane_1 = new JScrollPane();
scrollPane_1.setBounds(28, 209, 752, 265);
contentPane.add(scrollPane_1);
JTextArea textArea = new JTextArea();
textArea.setBounds(28, 209, 752, 265);
scrollPane_1.setViewportView(textArea);