I am using the following code,
UIManager.put("JFrame.activeTitleBackground", Color.red);
for change the toolbar color in JFrame. But it didn't work.
Is it possible to change the color of titlebar in JFrame?
I am using the following code,
UIManager.put("JFrame.activeTitleBackground", Color.red);
for change the toolbar color in JFrame. But it didn't work.
Is it possible to change the color of titlebar in JFrame?
Its not possible. The top level JFrame is controlled by the look & feel of the underlying OS.
You CAN change the color of an InternalFrame
.