Netbeans 7.3 Beta 2 GUI ビルダーを使用しています。Swing GUI をコーディングしていて、ボタンが押されたら別の GUI を表示しようとしています。
private void loginButtonSceneActionPerformed(java.awt.event.ActionEvent evt) {
new LoginGUI();
}
ログインボタンが押されたら、LoginGUI を表示したいのですが、何もせず、Netbeans は「新しいインスタンスは無視されました」と表示します。ボタンに system.out.println を追加して、正常に機能することを確認しました。
これは多かれ少なかれ完全なソースです。どこが間違っていますか?この GUI をログイン GUI に置き換えたいと考えています。
package com.john.spp.view;
import java.sql.ResultSet;
import java.sql.Statement;
/**
*
* @author John
*/
public class LogRegGUI extends javax.swing.JFrame {
/**
* Creates new form LoginGUI
*/
public LogRegGUI() {
initComponents();
}
/**
* This method is called from within the constructor to initialize the form.
* WARNING: Do NOT modify this code. The content of this method is always
* regenerated by the Form Editor.
*/
@SuppressWarnings("unchecked")
// <editor-fold defaultstate="collapsed" desc="Generated Code">
private void initComponents() {
//GUI BUILDER CODE HERE
}// </editor-fold>
private void loginButtonSceneActionPerformed(java.awt.event.ActionEvent evt) {
new LoginGUI();
}
private void registerSceneButtonActionPerformed(java.awt.event.ActionEvent evt) {
// TODO add your handling code here:
}
/**
* @param args the command line arguments
*/
public static void main(String args[]) {
/* Set the Nimbus look and feel */
//<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
/* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
* For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html
*/
try {
for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
if ("Nimbus".equals(info.getName())) {
javax.swing.UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException ex) {
java.util.logging.Logger.getLogger(LogRegGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(LogRegGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(LogRegGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(LogRegGUI.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
}
//</editor-fold>
/* Create and display the form */
java.awt.EventQueue.invokeLater(new Runnable() {
public void run() {
new LogRegGUI().setVisible(true);
}
});
}
// Variables declaration - do not modify
private javax.swing.JButton dataVaultButton;
private javax.swing.JButton helpButton;
private javax.swing.JEditorPane jEditorPane1;
private javax.swing.JLabel jLabel3;
private javax.swing.JPanel jPanel1;
private javax.swing.JPanel jPanel2;
private javax.swing.JScrollPane jScrollPane1;
private javax.swing.JButton loginButton;
private javax.swing.JButton logoutButton;
private javax.swing.JButton registerButton;
private javax.swing.JButton settingsButton;
// End of variables declaration
}
ありがとう。
編集:
このコードを使用して修正しましたが、非常に速く点滅し、新しい GUI を再描画するため、見た目がかなり悪くなります。これを停止する方法についてのアイデアはありますか?
private void loginButtonSceneActionPerformed(java.awt.event.ActionEvent evt) {
LoginGUI itemloader=new LoginGUI();
itemloader.setVisible(true);
this.setVisible(false);
}