Java 杰帕内尔什么也没表现出来

Java 杰帕内尔什么也没表现出来,java,swing,netbeans,Java,Swing,Netbeans,我对JPanel中没有出现的JComponent有一个问题 我使用Netbeans的javaguibuilder部分构建GUI。 我得到了一个大型机类,它是用GUI构建器构建的,用于处理菜单项。 我得到了一个MainPanel类,它位于MainFrame类中(在菜单栏下) 然后我手动将另一个JPanel添加到主面板中,这样我就可以再次完全控制GUI,而无需Netbeans GUI打扰我 然而,当我向JPanel添加一个JButton时,什么也没有显示 java(包括Netbeans代码): pa

我对JPanel中没有出现的JComponent有一个问题

我使用Netbeans的javaguibuilder部分构建GUI。 我得到了一个大型机类,它是用GUI构建器构建的,用于处理菜单项。 我得到了一个MainPanel类,它位于MainFrame类中(在菜单栏下)

然后我手动将另一个JPanel添加到主面板中,这样我就可以再次完全控制GUI,而无需Netbeans GUI打扰我

然而,当我向JPanel添加一个JButton时,什么也没有显示

java(包括Netbeans代码):

packagegui;
导入javax.swing.JFrame;
/**
*
*@作者弗兰克
*/
公共类大型机扩展了javax.swing.JFrame{
/**
*创建新表单大型机
*/
公共主机(){
初始化组件();
customInit();
}
私有void customInit(){
这是setTitle(“交易卡游戏”);
setExtendedState(JFrame.MAXIMIZED_两者);
}
/**
*从构造函数中调用此方法来初始化表单。警告:不要
*修改此代码。此方法的内容始终由表单编辑器重新生成。
*/
@抑制警告(“未选中”)
////GEN-BEGIN:初始化组件
私有组件(){
mainPanel1=新建gui.MainPanel();
jMenuBar1=newjavax.swing.JMenuBar();
menuFile=newjavax.swing.JMenu();
menuFileQuit=newjavax.swing.JMenuItem();
menuPreview=newjavax.swing.JMenu();
menuPreviewStart=newjavax.swing.JMenuItem();
setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
javax.swing.GroupLayout mainPanel1Layout=新建javax.swing.GroupLayout(mainPanel1);
主面板1.设置布局(主面板1布局);
主面板1布局。设置水平组(
mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0,400,短。最大值)
);
主面板1布局。设置垂直组(
mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0,279,短。最大值)
);
menuFile.setText(“文件”);
menuFileQuit.setText(“退出”);
menuFileQuit.addActionListener(新java.awt.event.ActionListener(){
public void actionPerformed(java.awt.event.ActionEvent evt){
menuFileQuitActionPerformed(evt);
}
});
menuFile.add(menuFileQuit);
jMenuBar1.add(菜单文件);
menuPreview.setText(“预览”);
menuPreviewStart.setText(“开始”);
menuPreview.add(menuPreviewStart);
jMenuBar1.add(menuPreview);
setJMenuBar(jMenuBar1);
javax.swing.GroupLayout=newjavax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(布局);
layout.setHorizontalGroup(
createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(mainPanel1,javax.swing.GroupLayout.DEFAULT\u SIZE,javax.swing.GroupLayout.DEFAULT\u SIZE,Short.MAX\u值)
);
layout.setVerticalGroup(
createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addComponent(mainPanel1,javax.swing.GroupLayout.DEFAULT\u SIZE,javax.swing.GroupLayout.DEFAULT\u SIZE,Short.MAX\u值)
);
包装();
}////GEN-END:initComponents
私有void menuFileQuitActionPerformed(java.awt.event.ActionEvent evt){//GEN-FIRST:event_menuFileQuitActionPerformed
系统出口(0);
}//GEN-LAST:事件菜单退出操作已执行
/**
*@param指定命令行参数
*/
公共静态void main(字符串参数[]){
/*设置Nimbus的外观和感觉*/
//
/*如果Nimbus(在JavaSE6中引入)不可用,请使用默认的外观。
*详情请参阅http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
*/
试一试{
for(javax.swing.UIManager.LookAndFeelInfo:javax.swing.UIManager.getInstalledLookAndFeels()){
if(“Nimbus”.equals(info.getName())){
setLookAndFeel(info.getClassName());
打破
}
}
}捕获(ClassNotFoundException ex){
getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE,null,ex);
}catch(实例化异常){
getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE,null,ex);
}捕获(非法访问例外){
getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE,null,ex);
}catch(javax.swing.UnsupportedLookAndFeelException ex){
getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE,null,ex);
}
//
/*创建并显示表单*/
invokeLater(new Runnable()){
@凌驾
公开募捐{
新建大型机().setVisible(true);
}
});
}
//变量声明-不修改//GEN-BEGIN:变量
私有javax.swing.JMenuBar jMenuBar1;
private gui.MainPanel MainPanel 1;
私有javax.swing.JMenu菜单文件;
private javax.swing.JMenuItem menuFileQuit;
私有javax.swing.JMenu菜单查看;
private javax.swing.JMenuItem menuPreviewStart;
//变量结束声明//GEN-End:变量
}
MainPanel.java(包括Netbeans代码):

packagegui;
导入java.awt.BorderLayout;
导入java.awt.Color;
导入javax.swing.BorderFactory;
导入javax.swing.JButton;
进口模型。游戏;
/**
*
*@作者弗兰克
*/
公共类主面板扩展javax.swing.JP
package gui;

import javax.swing.JFrame;

/**
 *
 * @author Frank
 */
public class MainFrame extends javax.swing.JFrame {

    /**
     * Creates new form MainFrame
     */
    public MainFrame() {
        initComponents();
        customInit();
    }
    
    private void customInit() {
        this.setTitle("Trading Card Game");
        this.setExtendedState(JFrame.MAXIMIZED_BOTH);
    }

    /**
     * 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">//GEN-BEGIN:initComponents
    private void initComponents() {

        mainPanel1 = new gui.MainPanel();
        jMenuBar1 = new javax.swing.JMenuBar();
        menuFile = new javax.swing.JMenu();
        menuFileQuit = new javax.swing.JMenuItem();
        menuPreview = new javax.swing.JMenu();
        menuPreviewStart = new javax.swing.JMenuItem();

        setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);

        javax.swing.GroupLayout mainPanel1Layout = new javax.swing.GroupLayout(mainPanel1);
        mainPanel1.setLayout(mainPanel1Layout);
        mainPanel1Layout.setHorizontalGroup(
            mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 400, Short.MAX_VALUE)
        );
        mainPanel1Layout.setVerticalGroup(
            mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addGap(0, 279, Short.MAX_VALUE)
        );

        menuFile.setText("File");

        menuFileQuit.setText("Quit");
        menuFileQuit.addActionListener(new java.awt.event.ActionListener() {
            public void actionPerformed(java.awt.event.ActionEvent evt) {
                menuFileQuitActionPerformed(evt);
            }
        });
        menuFile.add(menuFileQuit);

        jMenuBar1.add(menuFile);

        menuPreview.setText("Preview");

        menuPreviewStart.setText("Start");
        menuPreview.add(menuPreviewStart);

        jMenuBar1.add(menuPreview);

        setJMenuBar(jMenuBar1);

        javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
        getContentPane().setLayout(layout);
        layout.setHorizontalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(mainPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
        );
        layout.setVerticalGroup(
            layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
            .addComponent(mainPanel1, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE)
        );

        pack();
    }// </editor-fold>//GEN-END:initComponents

    private void menuFileQuitActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_menuFileQuitActionPerformed
        System.exit(0);
    }//GEN-LAST:event_menuFileQuitActionPerformed

    /**
     * @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(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(MainFrame.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            @Override
            public void run() {
                new MainFrame().setVisible(true);
            }
        });
    }
    // Variables declaration - do not modify//GEN-BEGIN:variables
    private javax.swing.JMenuBar jMenuBar1;
    private gui.MainPanel mainPanel1;
    private javax.swing.JMenu menuFile;
    private javax.swing.JMenuItem menuFileQuit;
    private javax.swing.JMenu menuPreview;
    private javax.swing.JMenuItem menuPreviewStart;
    // End of variables declaration//GEN-END:variables
}
package gui;

import java.awt.BorderLayout;
import java.awt.Color;
import javax.swing.BorderFactory;
import javax.swing.JButton;
import model.Game;

/**
 *
 * @author Frank
 */
public class MainPanel extends javax.swing.JPanel {

    /**
     * Creates new form MainPanel
     */
    public MainPanel() {
        initComponents();
        initPanel();
    }
    
    private void initPanel() {
        this.setBorder(BorderFactory.createLineBorder(Color.yellow));
        this.add(new JButton("Test"), BorderLayout.CENTER);
        revalidate();
    }

    /**
     * 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">//GEN-BEGIN:initComponents
    private void initComponents() {

        setLayout(new java.awt.BorderLayout());
    }// </editor-fold>//GEN-END:initComponents
    // Variables declaration - do not modify//GEN-BEGIN:variables
    // End of variables declaration//GEN-END:variables
}
//        javax.swing.GroupLayout mainPanel1Layout = new javax.swing.GroupLayout(mainPanel1);
//        mainPanel1.setLayout(mainPanel1Layout);
//        mainPanel1Layout.setHorizontalGroup(
//            mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
//            .addGap(0, 400, Short.MAX_VALUE)
//        );
//        mainPanel1Layout.setVerticalGroup(
//            mainPanel1Layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
//            .addGap(0, 279, Short.MAX_VALUE)
//        );