2个回答
展开全部
很简单的:
你看看符合要求么:
//这是b.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class b extends JFrame implements ActionListener{
JButton button1=new JButton("显示窗体a");
public b()
{
super("我是窗体b");
this.setBounds(250,80,350,400);
this.setVisible(true);
this.setResizable(false);
button1.setBounds(35,140,70,20);
button1.addActionListener(this);
this.add(button1);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==button1)
{
this.setVisible(false);
new a();
}
}
public static void main(String argv[])
{
new b();
}
}
//这是a.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class a extends JFrame{
JLabel label1 = new JLabel("我是窗体a",JLabel.CENTER);
public a()
{
super("我是窗体a");
this.setBounds(100,80,200,100);
this.setVisible(true);
this.setResizable(false);
this.add(label1);
}
}
你看看符合要求么:
//这是b.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class b extends JFrame implements ActionListener{
JButton button1=new JButton("显示窗体a");
public b()
{
super("我是窗体b");
this.setBounds(250,80,350,400);
this.setVisible(true);
this.setResizable(false);
button1.setBounds(35,140,70,20);
button1.addActionListener(this);
this.add(button1);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==button1)
{
this.setVisible(false);
new a();
}
}
public static void main(String argv[])
{
new b();
}
}
//这是a.java
import java.awt.*;
import javax.swing.*;
import java.awt.event.*;
public class a extends JFrame{
JLabel label1 = new JLabel("我是窗体a",JLabel.CENTER);
public a()
{
super("我是窗体a");
this.setBounds(100,80,200,100);
this.setVisible(true);
this.setResizable(false);
this.add(label1);
}
}
展开全部
给按钮添加一个事件 通过对按钮上的文字判断 来劲行相应的界面调用
更多追问追答
追问
有没有再详细一点,actionperformed里要怎么写?
追答
大概这样写:
if(button.getText().equals("window1"))
{
Frame1 frame1 = new Frame1();
}else if(button.getText().equals("window2"))
{
Frame2 frame2 = new Frame2();
}
其中Frame1,Frame2是你的两个界面类。需要注意的是在类的构造函数里要有设置界面可视化的语句负责要在类的对象定义后显示调用那个吧界面显示的语句
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询