this.button = new JButton(Img);
//設置按鈕位置
this.button.setBounds(x, y, w, h);
//增加事件監聽(內部匿名類),使得按完按鈕後按鈕被禁用
this.button.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
this.button.setEnable(fasle);
}
});
this.add(this.panal);
一個問題是false寫成了fasle;
一個是this.add(this.panal)是不是應該改成this.add(this.button);