0
我想替換當前的面板並調用JPanel
表單中的另一個面板。 我嘗試使用setContentPane()
和getContentPane()
方法,但它會給出錯誤。 我怎麼能做到這一點.... 我也試試這個,但清除所有componens但不添加任何用另一個jpanel替換一個jpanel
private void loginButtonActionPerformed(java.awt.event.ActionEvent evt) {
try {
if (new ConnectionFactory().userLoginCheck(usernameText.getText(), new String(passwordText.getPassword()))) {
removeAll();
add(new ChangeUsernamePassword());
revalidate();
repaint();
//new Welcomeboard();
} else {
warningLabel.setText("Invalid Username Or Password!!!");
}
} catch (ClassNotFoundException ex) {
Logger.getLogger(DashboardPanel.class.getName()).log(Level.SEVERE, null, ex);
} catch (SQLException ex) {
Logger.getLogger(DashboardPanel.class.getName()).log(Level.SEVERE, null, ex);
}
}