我是java新手并实现GUI并且我卡住了...我必须在包含用户名和密码的框架上制作,当我点击提交时,我被定向到另一个框架,称为菜单,其中我有四个按钮现在我想要点击一个按钮并重定向到另一个框架,但我无法做到这一点....请帮帮我!!!
这是我的代码:
WHERE
答案 0 :(得分:0)
您需要按照处理按JButton的方式更改代码。您需要添加ActionListener来收听紧急事件:
// make this class implements ActionListener
public class newframe extends imp implements ActionListener{
JButton menu = new JButton("Customer");
// add this as the action listener
menu.addActionListener(this);
}