Change JFrame titlebar color in Windows look and feel
Hi!Wonder if it磗 possible to change the color, in runtime, of the (don't really know the of it but..) JFrame titlebar when using Windows look and feel.And if, how is this done?thanks//jb
[222 byte] By [
jobu@oma] at [2007-11-27 3:59:14]

# 1
The title bar will be supplied by the operating system, unless you do the following:
JFrame.setDefaultLookAndFeelDecorated(true);
Beyond this, I'm not sure which class controls the painting of the title bar, so I'm not sure how you can change its colour.
# 4
Windows LAF always takes the title bar from the OS. If you want to play with the colors, you don't take the native LAF. If you take the native LAF, you can't play with the colors.