package contoh;
import com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
public class Main {
public static void main(String[] args) {
try {
UIManager.setLookAndFeel(new NimbusLookAndFeel());
SwingUtilities.invokeLater(new Runnable() {
public void run() {
FrameContohTemplate fContoh = new FrameContohTemplate();
fContoh.setLocationRelativeTo(null);
fContoh.setVisible(true);
}
});
} catch (Exception e) {
}
}
}
NimbusLookAndFeel()
MotifLookAndFeel()
based on the OpenGL article, the research could be a reference link below
ReplyDeletehttp://repository.gunadarma.ac.id/bitstream/123456789/1043/1/50406018.pdf
thank you