我想使用JFrame从我的Java应用程序发送系统通知,我想在此通知中设置背景颜色。现在通知有效,但我无法更改背景颜色。 这是代码:
public class NotificationFrame extends JFrame{
/**
*
*/
private static final long serialVersionUID = -2902763674924791105L;
public NotificationFrame(){
super();
setUndecorated(true);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBackground(Color.red);
setMinimumSize(new Dimension(300, 100));
add(new LabelFormat("Notifiche"));
}
}
使用此代码,我的JFrame的背景颜色是灰色的时间。
答案 0 :(得分:7)
您实际上想要更改JFrame的contentPane,而不是JFrame本身。
变化
setBackground(Color.red);
到
getContentPane().setBackground(Color.red);