import javax.swing.JFrame;
public class ButtonFrameTest{
public static void main(String args[]){
ButtonFrame button = new ButtonFrame();
button.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
button.setSize(300, 200);
button.setVisible(true);
}//end main
}
答案 0 :(得分:0)
我认为您想要说JFrame而不是ButtonFrame。或许你想让ButtonFrame类扩展JFrame。