gpt4 book ai didi

java - 从另一个 GUI 打开一个 GUI - Java Swing

转载 作者:行者123 更新时间:2023-11-30 04:30:53 25 4
gpt4 key购买 nike

我正在使用 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);
}

最佳答案

有多种原因导致使用多个框架并不是应用程序的最佳解决方案。好吧,它常常会让用户感到困惑,并且如您所见,带来了一些复杂性。
正如我已经在评论中建议的那样,您可以通过 my other answer yesterday 来指导您在显示所有 JFrame 之前先构建它们。如果您随后将它们设置为可见,则不会有像现在这样的延迟,并且还可以节省一些内存和 CPU 时间。
另一种方法可能是仅使用一个框架并更改其内容。这个answer确实已经成为我最喜欢的引用;)
这样,还可以先构建然后立即显示您已经构建的内容。无延迟、无闪烁。

关于java - 从另一个 GUI 打开一个 GUI - Java Swing,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14672163/

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