gpt4 book ai didi

java - 尝试使用 GUI,在添加按钮和标签时​​遇到问题

转载 作者:行者123 更新时间:2023-11-29 09:48:09 24 4
gpt4 key购买 nike

任务很简单,我们需要做的就是让代码创建一个带有红色面板、单个按钮和标签的窗口。这是到目前为止的代码以及测试程序类。我得到了要显示在窗口上的标签,但它在一个奇怪的地方。我根本无法让按钮显示,也无法让背景显示为红色。

这是我遇到最多麻烦的地方:

import java.awt.Color;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JPanel;

public class MyCustomFrame extends JFrame
{
public MyCustomFrame()
{
createComponents();
setSize(FRAME_WIDTH, FRAME_HEIGHT);

}

private void createComponents()
{
JPanel panel=new createPanel();
button=new JButton("Push Me");
label=new JLabel("This is a label");
add(button);
add(label);
}

private JButton button;
private JLabel label;
final int FRAME_WIDTH = 800;
final int FRAME_HEIGHT = 800;

public void createPanel()
{
JPanel panel=new JPanel();
panel.setBackground(Color.RED);
//button=new JButton("Push Me");
//label=new JLabel("This is a label");

}
public void createFrame()
{
JFrame frame=new JFrame();
add(frame);
frame.setVisible(true);
}

}

这是测试类:

import javax.swing.JFrame;

public class MyCustomFrameViewer
{
public static void main(String[] args)
{
MyCustomFrame frame = new MyCustomFrame();
frame.setTitle("My first frame");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setVisible(true);
}
}

最佳答案

您创建了 JPanel 面板,但未向其添加任何内容,然后从未将面板添加到您的 JFrame。您应该将您的组件添加到 JPanel、面板,然后将面板对象添加到您的 JFrame。

请注意,JPanel 默认使用 FlowLayout,因此无需特殊添加方法即可更轻松地接受多个其他组件。 JFrame的contentPane使用了BorderLayout,使用起来稍微复杂一些。

关于java - 尝试使用 GUI,在添加按钮和标签时​​遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21819406/

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