java界面添加滚动条加不上
importjava.awt.*;importjavax.swing.*;importjavax.swing.JScrollPane;importjava.awt.eve...
import java.awt.*; import javax.swing.*; import javax.swing.JScrollPane; import java.awt.event.*; import java.io.*; public class MainClass extends JFrame implements ActionListener{ JButton an1,an2; JTextField bjk; JTextArea area; JLabel bq1,bq2; JPanel p1; public static void main(String[] args){ Write.read();//初始化 new MainClass(); } public MainClass(){ an1=new JButton("发送"); an2=new JButton("退出"); an1.setBackground(Color.yellow); an2.setBackground(Color.red); bjk=new JTextField(20); area=new JTextArea(); JScrollPane jp=new JScrollPane(area, JScrollPane.VERTICAL_SCROLLBAR_ALWAYS, JScrollPane.HORIZONTAL_SCROLLBAR_ALWAYS); bq2=new JLabel("请输入内容并发送:"); p1=new JPanel(); p1.add(bq2);p1.add(bjk);p1.add(an1);p1.add(an2);p1.add(jp); an1.addActionListener(this); an1.setActionCommand("go"); an2.addActionListener(this); an2.setActionCommand("exit"); this.add(area); this.add(p1,BorderLayout.NORTH); this.setTitle("聊天机器人"); this.setSize(500,400); this.setLocation(100,100); this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); this.setVisible(true); } } 为什么运行界面不显示滚动条
展开
2015-07-19
展开全部
this.add(area);
修改成:
this.add(jp);
修改成:
this.add(jp);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询