gpt4 book ai didi

java - JFrame 中的 JPanel 上的 JPanel 不会显示

转载 作者:搜寻专家 更新时间:2023-11-01 02:54:28 24 4
gpt4 key购买 nike

你好我是一名业余爱好者,试图通过编写射箭记分卡来学习/提高我对 Java 的理解。我正在尝试制作一个 GUI,到目前为止,我已经在 J​​Panel 上成功制作了一排 18 个不同大小和颜色的标签,适合打一打。
然后,我尝试将这些“标签面板”中的五个添加到另一个面板以构建网格,并且在某些情况下不必创建和添加多达 150 个标签。没有成功,因为原始标签面板不会出现。所有的面板都显示在一个 JFrame 上

我已经尝试了多种不同的方法来使代码工作,使用 Java 教程和谷歌搜索互联网并研究该站点上的类似问题,但我正在兜圈子。我一定是遗漏了什么地方,希望您能提供帮助。

我使用 Java 6 和 JGrasp v1.8.8_01 作为 IDE

标签面板的以下代码已被删减,因为其中大部分是重复的。

import javax.swing.*;  
import java.awt.*;
public class ArrowScoreLabels extends JPanel{
public JPanel createContentPane(){
JPanel panelForLabels = new JPanel();
panelForLabels.setLayout(null);
//Code creates 18 labels, sets the size, position, background colours, border and
//font and adds the labels to the’panelForLabels
JLabel scorelabel1;
scorelabel1 = new JLabel("",JLabel.CENTER);
scorelabel1.setBorder(BorderFactory.createLineBorder(Color.black));
scorelabel1.setFont(new Font("Arial", Font.ITALIC, 26));
scorelabel1.setLocation(0, 0);//first value differs for each label
scorelabel1.setSize(35, 35);
scorelabel1.setOpaque(true);

panelForLabels.add(scorelabel1);
panelForLabels.setOpaque(true);
return panelForLabels;
}
}

运行下面的类显示面板上的 18 个标签

import javax.swing.*;
import java.awt.*;
public class TestArrowScoreLabels {

private static void createAndShowArrowLabels() {
//Create and set up the window.
JFrame frame = new JFrame("To score one dozen");
//Create and set up the content pane.
ArrowScoreLabels asl = new ArrowScoreLabels();
frame.setContentPane(asl.createContentPane());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(676, 73);
frame.setVisible(true);
}
//Main method to show the GUI/
public static void main(String[] args) {
SwingUtilities.invokeLater(
new Runnable() {
public void run() {
createAndShowArrowLabels();
}
});
}
}

第二个面板的以下代码类似,编译但只显示第二个绿色 JPanel 而不是带有标签的面板。

import javax.swing.*;
import java.awt.*;


public class FiveDozenScorePanel{
public JPanel createContentPane(){
//A bottom JPanel on which to place five dozenpanels.
JPanel fivedozenpanel = new JPanel();
fivedozenpanel.setLayout(null); //requires absolute spacing
fivedozenpanel.setSize(676,185);
fivedozenpanel.setBackground(Color.green);
//Label panels for five dozen
ArrowScoreLabels dozenscorepanel1, dozenscorepanel2,
dozenscorepanel3,dozenscorepanel4,dozenscorepanel5;
//Create the 5 dozenscorelabels.
dozenscorepanel1 = new ArrowScoreLabels();
dozenscorepanel1.setLocation(5,5);//y value changes for each panel

fivedozenpanel.add(dozenscorepanel1);//plus the other 4
fivedozenpanel.setOpaque(true);
return fivedozenpanel;
}

private static void createAndShowDozenPanels() {
JFrame frame = new JFrame("To score five dozen");
FiveDozenScorePanel fdsp = new FiveDozenScorePanel();
frame.setContentPane(fdsp.createContentPane());
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//Display the window
frame.setSize(700, 233);
frame.setVisible(true);
}

public static void main(String[] args) {
SwingUtilities.invokeLater(
new Runnable() {
public void run() {
createAndShowDozenPanels();
}
});
}
}

我也尝试过 frame.getContentPane().add(fdsp); - 框架.pack();并阅读了太多关于绘画方法的内容,以至于我完全感到困惑。我可以让 ArrowScoreLabels 图像直接出现在 JFrame 而不是 JPanel 上,但只有一个而不是五个。

如果有人指出正确的方向,我将不胜感激。谢谢你的时间。

更新 - 2010 年 12 月 14 日我已经设法在 JFrame 上的另一个 Jpanel 上显示 panelForLabels Jpanel。这是通过将以下代码添加到类 ArrowScoreLabels 来完成的。原来的 createContentPane() 方法已重命名为 createRowOne()。 panelForLabels 被涂成红色,五个面板被涂成黄色以确定显示的是哪个。然而,尽管进行了大量的实验和研究,我还是只能说服程序显示一排标签。

public  static JPanel createContentPane(){
//Bottom panelto hold rows of labels
JPanel fivedozenscorepanel = new JPanel();
fivedozenscorepanel.setLayout(null);//requires absolute spacing
fivedozenscorepanel.setSize(660,180);
fivedozenscorepanel.setBackground(Color.yellow);
fivedozenscorepanel.add(createRowOne());

fivedozenscorepanel.setOpaque(true);
return fivedozenscorepanel;
}

我显示 5 行 18 个标签的唯一方法是在 ArrowScoreLabels 类中创建全部 90 个,然后使用绝对间距将它们添加到一个 JPanel,然后添加到 JFrame。我已经注意到 pstantons 的建议 - 谢谢你 - 我正在考虑使用 MigLayout Manager。

最佳答案

简单的答案:使用布局管理器。不要使用绝对定位。

只需注释掉对 setLocationsetLayout 的所有调用,swing 将使用默认的 FlowLayout

要更好地控制显示,请使用不同的布局管理器。

此外,如果您使用多个面板,您将难以对齐不同面板中的内容,除非它们包含相同数量且大小完全相同的组件,因此请考虑对所有标签使用一个面板。

您可以使用 MigLayout 实现几乎任何您需要的布局.

编辑:在您的示例中,ArrowScoreLabels 不需要扩展 JPanel,因为您正在 createContentPane 中构建一个单独的 JPanel。稍后在您的代码中调用 new ArrowScoreLabels() 将只返回一个空白的 JPanel,而您需要调用 new ArrowScoreLabels().createContentPane()

如果您希望 ArrowScoreLabels 扩展 JPanel,请实现 public ArrowScoreLabels() 即构造函数而不是 createContentPane

关于java - JFrame 中的 JPanel 上的 JPanel 不会显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4432926/

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