所以我有这个类:
class Button extends JButton
{
private int x;
private int y;
public Button(int x,int y, int size, JLayeredPane pane )
{
JButton b = new JButton();
pane.add(b, new Integer(0));
b.setBounds(x,y,size,size);
}
}
这虽然没有做太多的工作。但我希望它将ActionListener 添加到类中的jbutton 中。但我似乎无法让它发挥作用。如果我尝试在课堂之外添加它,它不会给出错误,但似乎也没有做任何事情。我已经尝试过各种各样的东西,比如传入 JFrame ......
对于更多的上下文,这是针对扫雷游戏的。Jframe 也使用 LayeredPane