1

我尝试设置 jbutton 的背景颜色,但不起作用?看图。为什么不起作用?怎么修?

我想要红色背景:-)

在此处输入图像描述

    save_button.setForeground(Color.red);
    save_button.setBackground(Color.red);
    close_button.setForeground(Color.red);
    close_button.setBackground(Color.red);
4

1 回答 1

1

添加两个按钮的代码:

save_button.setOpaque(true);

它应该可以工作,如果没有尝试禁用边框颜色

于 2013-08-25T16:07:06.413 回答