1

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);
} 
4

1 に答える 1

2

複数のフレームを使用することがアプリケーションに最適なソリューションではない理由はいくつかあります。まあ、それはしばしば混乱したユーザーを残し、あなたが見るようにいくつかの複雑さをもたらします。コメントですでに提案したように、昨日、他の回答を表示する前にすべてを作成することで、他の回答
をガイドすることができます。次にそれらを表示するように設定すると、現在ほどの遅延は発生せず、メモリとCPU時間を節約できます。 もう1つの方法は、1つのフレームを使用して、その内容を変更することです。この答えは、参照する際の私のお気に入りに本当に成長しました;) このようにして、最初に構築してから、すでに構築したものを即座に表示する可能性もあります。遅延もちらつきもありません。JFrame

于 2013-02-03T12:16:48.870 に答える