Is there any way to set Header and Footer in Java Swing?
Actually I am using theme in my application and I have set fixed background color for all panels. But now the work is to set different background color of Header and Footer panel. Can you give me any suggestion?
Thanks in advance..
Header and Footer are probably just
JPanel
s, so you can dosetBackground(Color.YELLOW)
or such. As you probably have several header and footes (seeing those tabs), you could make a single class:You can even use a http://docs.oracle.com/javase/6/docs/api/java/awt/SystemColor.html (for theming), like
SystemColor.info
.