gpt4 book ai didi

java - 将面板从二等舱更改为一等舱

转载 作者:行者123 更新时间:2023-12-02 03:46:33 25 4
gpt4 key购买 nike

我正在做关于使用登录管理员、学生和老师插入数据的练习。但我在注销时得到了堆栈。

一级Test5.java

  public class Test5 extends JFrame implements ActionListener , ItemListener {
public Container contentPane = this.getContentPane();
public Test5(){
CardLayout card = new CardLayout();
setLayout(card);
setSize(1366,768);
setTitle("Student Data Editor");
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setResizable(true);
try{
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection("jdbc:mysql://localhost/kampus", "root", "abc");
stmt = conn.createStatement();
}catch(Exception e){
}
dosen dos = new dosen();
siswa sis = new siswa();
contentPane.add("main", main);
contentPane.add("student", sis.panel_siswa);
contentPane.add("dosen", dos.panel_dosen);
main = new JPanel(); //first Panel
main.setLayout(new GridBagLayout());
label_main = new JLabel("ID");
label_main2 = new JLabel("Password");
tf_main = new JTextField(15);
tf_main2 = new JPasswordField(15);
login = new JButton("LOGIN");
}
public void actionPerformed(ActionEvent e) {
if(e.getActionCommand().equals("LOGIN")){
card.show(contentPane, "dosen");
}
}
}

第二类 dosen.java

public class dosen implements ActionListener{
JPanel panel_dosen;
public dosen(){
panel_dosen = new JPanel(); //second panel
panel_dosen.setLayout(new BorderLayout());
panel_dosen.add(panel_combo, BorderLayout.NORTH);
panel_dosen.add(scroll, BorderLayout.CENTER);
panel_dosen.add(panel_input, BorderLayout.SOUTH);
}
public void actionPerformed(ActionEvent e){
if(e.getActionCommand().equals("Logout")){ //it didnt work at all and dont have any error
Test5 tes = new Test5();
tes.add(tes.main);
tes.remove(panel_dosen);
tes.tf_main.setText("");
tes.tf_main2.setText("");
}
}
}

问题

第一个面板 enter image description here

第二个面板 enter image description here

问题

如何删除第二个面板并添加第一个面板添加 jframe ?

最佳答案

how to make second panel removed and add first panel add jframe ?

使用CardLayoutCardLayout 专门设计用于允许在同一空间中交换面板。

阅读 Swing 教程中关于 How to Use CardLayout 的部分了解更多信息和工作示例。

关于java - 将面板从二等舱更改为一等舱,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36250484/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com