我知道这听起来像一个简单的问题,但我正在用按钮等进行简单的文本冒险,我不知道如何将我的 Jpanel 添加到我的 JFrame 中。我的 JPanel 有一堆按钮和图形之类的东西,如果这有所作为的话。我提供了下面的代码。框架面板=新框架();是另一个扩展 JPanel 的类。我知道它被称为“框架”令人困惑,因为我曾经让它扩展 JFrame。无论如何,我的代码不会像它应该的那样从其他类生成按钮、图形等。谢谢,
package sonomaroller;
import javax.swing.*;
import java.awt.*;
import static javax.swing.JFrame.*;
public class SonomaRoller extends JFrame {
public static Dimension size = new Dimension(550,550); //Dimension of Frame
public static String title = "Sonoma Roller v0.00" ;
public SonomaRoller(){
setTitle(title);
setSize(size);
setResizable(false);
setLocationRelativeTo(null); // null centers window on screen
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
System.out.println("hello?");
//setLayout(null);
setVisible(true);
}
public static void main(String[] args) {
SonomaRoller object1=new SonomaRoller();
frame panel=new frame();
}
}