如何在不更改背景颜色的情况下禁用按钮。当我按下准备就绪时,就绪按钮和蓝色按钮被禁用。但我想保留蓝色按钮的颜色。 你可以帮帮我吗? On the left the blue button, on the right the disabled buttons
答案 0 :(得分:1)
轻松:保留一个实例变量'isButtonEnabled',而不是启用或禁用该按钮,您可以更改此按钮的值。
然后,您需要做的只是:
public void actionPerformed(ActionEvent event){
if ( isButtonEnabled){
// the actual code
}
}