Look and feel

3 respostas
Link_pg

ola!!

como eu mudo o tema do meu look and feel?
tipo eu quero que o look and feel seja o Metal e o tema seja o Ocean

flww

3 Respostas

H

private javax.swing.UIManager.LookAndFeelInfo looks[];

public mudaLookAndFeel(int index) {

looks = javax.swing.UIManager.getInstalledLookAndFeels();

try {

javax.swing.UIManager.setLookAndFeel( looks[index].getClassName() );

javax.swing.SwingUtilities.updateComponentTreeUI( this );

} catch (Exception e) {

e.printStackTrace();

}

}

ordem dos look and feel do sistema operacional win
Motif = 0
Windows = 1
Metal = 2

Link_pg

tipo eu queria o tema ocean

H

setCurrentTheme(theme)

Criado 20 de outubro de 2006
Ultima resposta 21 de out. de 2006
Respostas 3
Participantes 2