当前位置: 代码迷 >> Java相关 >> [求助]JFrame的问题
  详细解决方案

[求助]JFrame的问题

热度:247   发布时间:2007-06-10 22:43:19.0
[求助]JFrame的问题
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Demo extends JFrame implements ActionListener {
JLabel a4;
JButton a1,a2,a3;
JPanel jp = new JPanel();
public Demo() {
setTitle("haha");
a1=new JButton("demo1");
a2=new JButton("demo2");
a3=new JButton("demo3");
a4=new JLabel("demo4");
a1.addActionListener(this);
a2.addActionListener(this);
a3.addActionListener(this);
jp.add(a1);
jp.add(a2);
jp.add(a3);
jp.add(a4);
setSize(400,200);
setVisible(true);
setBackground(Color.white);
Container contentPane=getContentPane();
contentPane.add(jp);
}

public void actionPerformed(ActionEvent e){
if(e.getSource()==a1){
a4.setText("xu");
}
if(e.getSource()==a2){
a4.setText("xian");
}
if(e.getSource()==a3){
a4.setText("yue");
}
}


public static void main(String[] args) {
JFrame beat =new Demo();
beat.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE );

}

}

程序可以运行.但是运行后窗口出来了。 里面的按钮却没出现.需要将窗口大小改变一下(随便点下框架也可以)里面的按钮才出来。 我试过几台机子.有的可以.有的就出现我说的问题哦。
是怎么回事啊????
搜索更多相关的解决方案: JFrame  import  new  JButton  

----------------解决方案--------------------------------------------------------
[CODE]setSize(400,200);
setVisible(true);
setBackground(Color.white);
Container contentPane=getContentPane();
contentPane.add(jp);
[/CODE]
前两行和后两行换过来试 下
----------------解决方案--------------------------------------------------------
楼上正解

在用窗体的时候,应该先添加东西,再设置大小,然后再使其可见
----------------解决方案--------------------------------------------------------
谢2楼了哦。
改了就可以了哦。
呵呵.

----------------解决方案--------------------------------------------------------