posted 20 years ago
Anyone know how to change the active title bar color of a jinternalframe. I have looked everywhere and the only thing I found was something like...
try
{
UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
UIManager.put("activeCaption", new java.awt.Color(255,225,255));
SwingUtilities.updateComponentTreeUI(this);
} catch(Exception e) {System.out.println("Error setting native LAF: " + e);}
I have tried implementing this... its changes the overall L&F but does not change the specific color of the active title bar..
Any Ideas?
Thanks,
X