英文:
How to make Jframe button open another Jframe screen in Netbeans
问题
我有一个 Jframe,如果点击按钮,我需要将它链接到另一个 Jframe,点击时会转到另一个 Jframe 屏幕,并关闭旧屏幕。实际上,我希望如果用户点击“登录”或“注册”,那么它会转到登录屏幕以进行登录,我是新手,请帮忙。附注:这是我在 Stack 的第一个问题,所以请忽略错误。
英文:
I have a Jframe and i need to link it to another Jframe if button is clicked it goes to another Jframe screen on click and closes old screen. accully i want if user click login register then it goes to login screen for getting login i am newbie and a bigginner kindly help me P.S its my first Qestion at Stack so ignore mistakes.
答案1
得分: 1
双击 NETBEANS 中的注册按钮或在点击事件上添加事件侦听器(ActionListener)
btnLogin.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
this.setVisible(false);
new FrmMain().setVisible(true); // 在登录窗体之后显示主窗体...
}
});
英文:
Double Click the Register Button in the NETBEANS or add the Event Listener on Click Event (ActionListener)
btnLogin.addActionListener(new ActionListener()
{
public void actionPerformed(ActionEvent e) {
this.setVisible(false);
new FrmMain().setVisible(true); // Main Form to show after the Login Form..
}
});
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论