Javaswing多类窗口怎么写按钮事件呢?

首页窗口类packagecom.beyole.util;importjava.awt.BorderLayout;importjava.awt.GridLayout;imp... 首页窗口类
package com.beyole.util;
import java.awt.BorderLayout;
import java.awt.GridLayout;
import javax.swing.JFrame;
import javax.swing.JPanel;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JButton;
@SuppressWarnings("serial")
class win3 extends JFrame implements ActionListener {
@SuppressWarnings("unused")
private JButton btBlue, btDialog;
public win3(){

this.setTitle("同学录管理系统");//设置标题
JPanel south = new JPanel(new GridLayout(1,10,9,10));
south.add(new JButton ("登录"));//点击事件
this.setResizable(false);//关闭当前界面
south.add(new JButton ("开发团队"));//点击事件
this.setResizable(false);//关闭当前界面
this.add(south, BorderLayout.SOUTH);
this.setResizable(false);//不可改变大小
this.setLocationRelativeTo(null);//居中显示
this.setSize(400, 400);//窗体大小
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);//默认关闭操作
}
private static void win2(boolean b) {
// TODO Auto-generated method stub

}
public static void main(String[] args) {
new win3().setVisible(true);
}
@Override
public void actionPerformed(ActionEvent e) {
// TODO 自动生成的方法存根

}
public JButton getBtBlue() {
return btBlue;
}
public void setBtBlue(JButton btBlue) {
this.btBlue = btBlue;
}
}
第B类按钮部分
public win2()
{
super("同学录管理系统菜单");
//框架中加载面板
pan p =new pan();
this.add(p);
Font d=new Font("宋体",Font.BOLD,100);
JPanel south = new JPanel(new GridLayout(2,2,2,2));
south.add(new JButton ("浏览"));
south.add(new JButton ("查找"));
south.add(new JButton ("增加"));
south.add(new JButton ("删除"));
south.add(new JButton ("退出"));
south.add(new JButton ("返回上一级"));
this.add(south, BorderLayout.SOUTH);
}如何A跳转到第B类窗口呢?
展开
 我来答
zh857872
2015-06-28 · TA获得超过1415个赞
知道小有建树答主
回答量:426
采纳率:100%
帮助的人:301万
展开全部
在A类面板上增加一个按钮触发事件即可。如果实在不懂,可以远程帮你解决。

有问题欢迎提问,满意请采纳 ,谢谢!
更多追问追答
追问
按钮触发事件怎么写?
追答
假设你有一个登录的按钮为loginBtn,在登录后就跳转到你的管理界面,
则绑定事件方法loginBtn.addActionListener(this);当然你frame是实现了ActionListener类,然后在事件监听的方法actionPerformed(ActionEvent e)里弹出你的管理窗口即可。

这样描述能明白吗,如果实在搞不懂,可以远程协助你解决哦。
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式