gpt4 book ai didi

java - 我的 JFrame 中什么也没有出现

转载 作者:行者123 更新时间:2023-12-01 06:56:25 24 4
gpt4 key购买 nike

我正在练习使用 GUI。我一直在遵循一组说明,但是当我尝试运行该程序时,只会出现一个空框架。框架内看不到任何信息。

这是我的代码:

package practice528;

import java.util.Scanner;
import java.io.*;
import javax.swing.*;
import java.awt.*;

public class Practice528
{
public static void main(String[] args)
{
JFrame frame = new JFrame("Rectangle Calculator");
frame.setVisible(true);
frame.setSize(400,300);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);

JLabel lengthL, widthL, areaL, perimeterL;
lengthL = new JLabel("Enter the length: ", SwingConstants.RIGHT);
widthL = new JLabel("Enter the width: ", SwingConstants.RIGHT);
areaL = new JLabel("The area is ", SwingConstants.RIGHT);
perimeterL = new JLabel("The perimeter is ", SwingConstants.RIGHT);

frame.setLayout(new GridLayout(5,2));


System.out.println();
} //end main
} //end class

最佳答案

将组件添加到内容 Pane :)

这里是使用多功能 MigLayout 的建议:

JPane panel = (JPanel) frame.getContentPane();
panel.setLayout(new MigLayout("fill, wrap 2", "[right][fill]"));

panel.add(lengthL);
panel.add(new JTextField());
panel.add(widthL);
panel.add(new JTextField());
panel.add(areaL);
panel.add(new JTextField());
panel.add(perimeterL);
panel.add(new JTextField());

关于java - 我的 JFrame 中什么也没有出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10790292/

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