我试图在用户在他们使用的同一窗口中执行某些操作后显示不同的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吗?
答案 0 :(得分:2)
JFrame
延伸,特别是在这种情况下,帧不能添加到其他帧中。而是基于JPanel
JFrame
的单个实例,将其布局管理器设置为使用CardLayout
。CardLayout
根据需要在视图之间切换您还可以考虑使用JDialog
作为登录窗口,但基本建议仍然存在;创建窗口,扩展组件......