26/10/2006, 07:23
|
| | Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 22 años, 8 meses Puntos: 8 | |
Buscando (en inglés, las mismas keywords en español no me arrojan nada útil):
You CAN set it for Java L&F using 1.2.0 or better:
UIManager.put("TabbedPane.selected", <color>);
Evaluation
The coloration of tabs is look&feel defined.
There is a way to set the color:
// before any JTabbedPanes are instantiated....
UIManager.put("TabbedPane.selected", Color.red);
However, it appears that Metal is the only look and feel which honors
this property. I can fix windows to honor it if it is set.
Pero esto sólo cambia el color de fondo del texto de la etiqueta, no cambia el borde, habrá que seguir investigando la clase UIManager |