当我再次单击按钮时,我基本上只是希望颜色变回白色;
这是我必须在第一次点击时更改它的代码;
private void colourButton()
{
inputField.setBackground(Color.WHITE);
}
// listener method
public void actionPerformed( ActionEvent e)
{
inputField.setBackground(Color.RED);
resultMessage.setText("Colour Button Pressed");
}
现在我只想能够再次单击它 inputField 的颜色应该回到白色。