gpt4 book ai didi

java - GUI编程-定制框架

转载 作者:行者123 更新时间:2023-12-01 17:22:48 26 4
gpt4 key购买 nike

我刚刚开始使用 GUI 编程。我正在尝试自定义框架,但到目前为止,当我将其添加到 gameView 时,什么也没有出现,例如按钮或猫 gif,所以我在运行它后得到的只是框架窗口。到目前为止,这是我的代码:

package experiment10;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;

public class mainFrame extends JFrame
{
public static int MAX = 500; // maximum number to guess
private JButton submitBtn; // Submit button
private JButton clearBtn; // Clear Input button
private JTextField inputNumber; //input guessed number
private int magicNumber; //randomly generated number

public static void main(String[] arg) {
//Show frame
JFrame frame = new JFrame();
frame.setVisible(true);
}

public mainFrame() {

setSize(400, 400);
setResizable (false);
setTitle("Let's Play Hi Lo");
setDefaultCloseOperation(EXIT_ON_CLOSE);
magicNumber = (int)(Math.random()*MAX);

Container gameView = getContentPane();
gameView.setLayout(new FlowLayout());
//Customizations
submitBtn = new JButton("Submit"); //create submit button
clearBtn = new JButton("Clear"); //create clear button
gameView.add(submitBtn); //adds submit button
gameView.add(clearBtn); //adds clear button

JLabel imageLabel = new JLabel(new ImageIcon("cat.gif")); //creates image
gameView.add(imageLabel); //adds image

JLabel textLabel = new JLabel("Please enter your guess"); //creates JLabel
gameView.add(textLabel); //adds JLabel

JTextField input = new JTextField(); //creates JTextField
gameView.add(input); //adds JTextField

}
}

非常感谢任何帮助/提示。谢谢。

最佳答案

您需要从 main 方法中调用 mainFrame() :

mainFrame frame = new mainFrame();

您还可以从主文件中删除以下代码:

JFrame frame = new JFrame();
frame.setVisible(true);

然后,您需要将 setVisible(true); 添加到 mainFrame() 构造函数中。

关于java - GUI编程-定制框架,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61263468/

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