Cita:
Iniciado por LuisChavezB para cambiar el puro skin:
Código:
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
SubstanceLookAndFeel.setSkin(skin);
} catch (Exception ex) {
}
}
});
para cambiar tambien el look and feel:
Código:
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel(lookAndFeel);
SubstanceLookAndFeel.setSkin(skin);
} catch (Exception ex) {
}
}
});
Hola Luis:
He insertado tu código dentro de mi Main así:
Código:
JFrame.setDefaultLookAndFeelDecorated(true);
JDialog.setDefaultLookAndFeelDecorated(true);
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
try {
UIManager.setLookAndFeel("org.pushingpixels.substance.api.SubstanceLookAndFeel");
SubstanceLookAndFeel.setSkin("org.pushingpixels.substance.api.skin.BusinessBlackSteelSkin");
} catch (Exception ex) {
}
}
});
frmJupiterMain frmMain = new frmJupiterMain();
frmMain.setExtendedState(JFrame.MAXIMIZED_BOTH);
frmMain.setVisible(true);
}
Pero no hace nada, se ve así:
[URL="http://ompldr.org/vZDhzbg"]http://ompldr.org/vZDhzbg[/URL]
Los tonos marrones son cosa mía me los he creado por código.
¿Tienes idea de que he hecho mal?
Muchas gracias una vez más.