在现有JFrame中重新绘制新的JFrame?

时间:2014-05-26 06:27:48

标签: java swing layout-manager jdialog cardlayout

我试图在用户在他们使用的同一窗口中执行某些操作后显示不同的JFrame,类似于登录功能。 Haven已经能够弄清楚如何做到这一点。

我现在的解决方法是隐藏当前的JFrame,然后打开一个新的模拟类似效果的JFrame。但理想情况下,我希望它只在同一个现有窗口中显示下一个JFrame。

import java.awt.FlowLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JTextField;

public class Login extends JFrame {
    private static int x = 0;
    static JTextField txtInput = new JTextField(10);
    static JButton btnSwitch = new JButton("Log on");

    public Login(){
        setLayout(new FlowLayout());

        //add button and register
        add(new JLabel("Enter password:"));
        add(txtInput);
        add(btnSwitch);
    }

    public static void main(String[] args) {
        final JFrame frame = new Login();

        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(200, 150);
        frame.setVisible(true);


        btnSwitch.addActionListener(new ActionListener() {
            public void actionPerformed(ActionEvent e) {
                if(txtInput.getText().equals("123")){
                    //frame = new GUIHelloWorld(); this doesn't work because "The final local variable frame cannot be assigned, since it is defined in an enclosing type"
                    //so I went with the below workaround
                    GUIHelloWorld frame = new GUIHelloWorld();

                    frame.setLocationRelativeTo(null); // Center the frame
                    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                    frame.setSize(300, 100);
                    frame.setVisible(true);
                }
            }
        });
    }
}

一旦用户通过了GUI的第一部分,我想要显示其他类似的内容:

import java.awt.GridLayout;

import javax.swing.JFrame;
import javax.swing.JLabel;

public class GUIHelloWorld extends JFrame {
    public GUIHelloWorld(){
        setLayout(new GridLayout(0,1));

        add(new JLabel("Hello World"));
        add(new JLabel("Welcome to the 2nd part of the GUI"));
    }

    public static void main(String[] args) {
        JFrame frame = new GUIHelloWorld();
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(300, 100);
        frame.setVisible(true);
    }

}

有人可以告诉我如何在用户正在使用的现有窗口中显示新的JFrame吗?

1 个答案:

答案 0 :(得分:2)

  1. 不要从JFrame延伸,特别是在这种情况下,帧不能添加到其他帧中。而是基于JPanel
  2. 之类的单独UI视图
  3. 创建JFrame的单个实例,将其布局管理器设置为使用CardLayout
  4. 将每个视图添加到框架中,相应地命名每个视图
  5. 使用CardLayout根据需要在视图之间切换
  6. 您还可以考虑使用JDialog作为登录窗口,但基本建议仍然存在;创建窗口,扩展组件......