Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
/**
*
*/
package de.tutorials;
import javax.swing.JButton;
import javax.swing.JFrame;
/**
* @author Thomas.Darimont
*
*/
public class LookAndFeelExample extends JFrame{
public LookAndFeelExample(){
super("LookAndFeelExample");
setDefaultCloseOperation(EXIT_ON_CLOSE);
add(new JButton("LookAndFeel"));
pack();
setVisible(true);
}
/**
* @param args
*/
public static void main(String[] args) {
new LookAndFeelExample();
}
}
java -cp .;bin -Dswing.defaultlaf=com.sun.java.swing.plaf.motif.MotifLookAndFeel de.tutorials.LookAndFeelExample