Mengubah Template Java Swing GUI

  Ini adalah class Main di package contoh=============================================
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()



MetalLookAndFeel()


Postingan terkait:

1 Tanggapan untuk "Mengubah Template Java Swing GUI"

  1. based on the OpenGL article, the research could be a reference link below

    http://repository.gunadarma.ac.id/bitstream/123456789/1043/1/50406018.pdf
    thank you

    ReplyDelete

Silahkan tinggalkan komentar baik saran maupun kritik. Komentar yang masuk akan muncul pada kolom komentar setelah di approve. Terimakasih atas pengertiannya.