gpt4 book ai didi

java - 无法向我的 JFrame 添加面板(背景)

转载 作者:行者123 更新时间:2023-12-02 07:01:14 25 4
gpt4 key购买 nike

我有一个用作背景的 JPanel,其名称为 BackgroundPanel。我正在使用 NetBeans 设计我的主 JFrame,并添加像这样的 BackgroundPanel。

public class Main extends javax.swing.JFrame {
Image img = null;
public Main() {
initComponents();
setTitle("Count To");
setPreferredSize(new Dimension(800, 600));
Image img = null;
try {
img = ImageIO.read(new File("resources/bg.png"));
} catch (IOException e) {System.out.println("Image can't found.");}

BackgroundPanel bgPanel = new BackgroundPanel(img, BackgroundPanel.SCALED, 0.0f, 0.0f);

setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
getContentPane().add(bgPanel);
pack();
setVisible(true);
//setResizable(false);
setLocationRelativeTo(null);
}

/**
* 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() {

setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
setCursor(new java.awt.Cursor(java.awt.Cursor.DEFAULT_CURSOR));
setForeground(java.awt.Color.red);
setIconImage(getIconImage());

javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
getContentPane().setLayout(layout);
layout.setHorizontalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 400, Short.MAX_VALUE)
);
layout.setVerticalGroup(
layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
.addGap(0, 300, Short.MAX_VALUE)
);

pack();
}// </editor-fold>

/**
* @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(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (InstantiationException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (IllegalAccessException ex) {
java.util.logging.Logger.getLogger(Main.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
} catch (javax.swing.UnsupportedLookAndFeelException ex) {
java.util.logging.Logger.getLogger(Main.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 Main().setVisible(true);
}
});
}
// Variables declaration - do not modify
// End of variables declaration
}

但是我的BackgroundPanel不可见,也就是说我的框架没有背景图像,而是纯灰色(默认)。

我希望我的解释很清楚。如果您需要的话,我也可以包含BackgroundPanel类。

最佳答案

所有顶级容器(和JInternalFrame)都有所谓的“根 Pane ”。它负责实际构建窗口的主要布局。

根 Pane (基本上)由内容 Pane 和玻璃(以及选项菜单栏)组成,位于窗口顶部。

enter image description here

当您将组件添加到窗口时,它们实际上已添加到内容 Pane 中。

就您的情况而言,只需用您自己的面板替换内容 Pane 而不是尝试将其添加到现有面板中是有意义的。

这样,当您向窗口添加新组件时,它们实际上会被添加到 BackgroundPane 中。

但请确保在尝试向窗口添加任何组件之前更改内容 Pane ;)

查看How to use Root Panes了解更多详情

关于java - 无法向我的 JFrame 添加面板(背景),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16640017/

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