问题描述
- JButton按钮无法禁用按钮,代码如下
-
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);
解决方案二:
this.button.setEnable(fasle);
false,不是fasle
解决方案三:
false,不是fasle
解决方案四:
false,不是fasle
时间: 2025-01-20 23:41:10