如何在Netbeans中使一个JFrame按钮打开另一个JFrame屏幕

huangapple go评论61阅读模式
英文:

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..
    }
});

huangapple
  • 本文由 发表于 2020年10月26日 20:04:49
  • 转载请务必保留本文链接:https://go.coder-hub.com/64536797.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定