Java - 无法从 ActionListener 打开新框架

Java - Unable to open a new frame from ActionListener

我目前正在设计登录屏幕,但我 运行 遇到了一个 st运行ge 问题。我已经在 swing 的帮助下设计了我的 GUI,是时候制作功能按钮了。我想测试我的登录按钮,看看它是否会带我到我想要的框架,但它不能。例如,我可以设置一个 JOptionPane.showMessageDialog,效果很好,但我无法从按钮打开另一个框架。我尝试使用 New JFrameName().setVisible(true)JFrameName test = new JFrameName(); test.setVisible(true);,但这些方法显示为红色。这是我的代码。

package com.edu4java.swing.tutrial3;

import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class LoginView {


    public static void main(String[] args) {
        JFrame frame = new JFrame("Bus Tour Booking System");
        frame.setSize(300, 200);
        frame.setResizable(false);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();
        frame.add(panel);
        placeComponents(panel);

        frame.setVisible(true);
    }

    private static void placeComponents(JPanel panel) {

        panel.setLayout(null);

        JLabel titleLabel = new JLabel("Bus Tour Booking System");
        titleLabel.setBounds(70,15,150,25);
        panel.add(titleLabel);

        JLabel userLabel = new JLabel("Username: ");
        userLabel.setBounds(30, 50, 80, 25);
        panel.add(userLabel);

        JTextField userText = new JTextField(20);
        userText.setBounds(120, 50, 130, 25);
        panel.add(userText);

        JLabel passwordLabel = new JLabel("Password: ");
        passwordLabel.setBounds(30, 80, 80, 25);
        panel.add(passwordLabel);

        JPasswordField passwordText = new JPasswordField(20);
        passwordText.setBounds(120, 80, 130, 25);
        panel.add(passwordText);

        JButton loginButton = new JButton("login");
        loginButton.setBounds(100, 125, 80, 25);
        panel.add(loginButton);

        ActionListener myButtonListener = new MyButtonListener();
        loginButton.addActionListener(myButtonListener);

    }

    private static class MyButtonListener implements ActionListener {
        @Override
        public void actionPerformed(ActionEvent e) {
            //can't access a new frame from here :(
        }
    }
    }

如果有人能帮助我,我将不胜感激,我在 Whosebug 和 Reddit 上阅读了很多,但就是找不到解决方案。我也是 Java 的新手,所以这也没什么帮助 :D。提前致谢!

P.S。至于登录屏幕的实际功能,我将在稍后阶段进行。

这是您的登录信息class。我将 JFrame 框架放在全局范围内,因此您可以从 ButtonListener 方法对其进行操作。我还创建了一个 SomeFrame class,只是为了演示单击按钮时将创建的新 JFrame。当一个动作被执行时(按钮被点击)一个新的 SomeFrame 对象被创建。由于 SomeFrame 扩展了 JFrame,我们可以将方法 setVisible() 用于 SomeFrame 对象。 SomeFrame 框架出现,LoginView 不再可见。

import javax.swing.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class LoginView {

 public static JFrame frame = new JFrame("Bus Tour Booking System");

    public static void main(String[] args) {

        frame.setSize(300, 200);
        frame.setResizable(false);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

        JPanel panel = new JPanel();
        frame.add(panel);
        placeComponents(panel);

        frame.setVisible(true);
    }

    private static void placeComponents(JPanel panel) {

        panel.setLayout(null);

        JLabel titleLabel = new JLabel("Bus Tour Booking System");
        titleLabel.setBounds(70,15,150,25);
        panel.add(titleLabel);

        JLabel userLabel = new JLabel("Username: ");
        userLabel.setBounds(30, 50, 80, 25);
        panel.add(userLabel);

        JTextField userText = new JTextField(20);
        userText.setBounds(120, 50, 130, 25);
        panel.add(userText);

        JLabel passwordLabel = new JLabel("Password: ");
        passwordLabel.setBounds(30, 80, 80, 25);
        panel.add(passwordLabel);

        JPasswordField passwordText = new JPasswordField(20);
        passwordText.setBounds(120, 80, 130, 25);
        panel.add(passwordText);

        JButton loginButton = new JButton("login");
        loginButton.setBounds(100, 125, 80, 25);
        panel.add(loginButton);

        ActionListener myButtonListener = new MyButtonListener();
        loginButton.addActionListener(myButtonListener);

    }

    private static class MyButtonListener implements ActionListener {
        @Override
        public void actionPerformed(ActionEvent e) {
           SomeFrame newFrame = new SomeFrame();
           newFrame.setVisible(true);
           frame.setVisible(false);
        }

      }
 }

这是 SomeFrame class。

import javax.swing.JFrame;
import javax.swing.JPanel;

public class SomeFrame extends JFrame {

    public SomeFrame(){
         super("something");
            this.setSize(300, 200);
            this.setResizable(false);
            this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

            JPanel panel = new JPanel();
            this.add(panel);

            this.setVisible(true);
    }

}