本人小白,在编写界面的时候卡在了 按钮背景色这里
JButton btnNewButton = new JButton("test");
btnNewButton.setForeground(Color.BLACK);
btnNewButton.setBackground(Color.YELLOW);
为什么如此编写,按钮的背景色依旧是默认的白色?
1.编译器没有报错
2.我是mac os 系统。有影响么?
谢谢各位
JButton btnNewButton = new JButton("test");
btnNewButton.setForeground(Color.BLACK);
btnNewButton.setBackground(Color.YELLOW);
为什么如此编写,按钮的背景色依旧是默认的白色?
1.编译器没有报错
2.我是mac os 系统。有影响么?
谢谢各位