I'm tired of JButtons, how can I make a nicer GUI in java?

前端 未结 10 1265
予麋鹿
予麋鹿 2020-12-13 20:19

So far I\'ve only built \"small\" graphical applications, using swing and JComponents as I learned at school. Yet I can\'t bear ugly JButtons anymore. I\'ve tried to play wi

10条回答
  •  天命终不由人
    2020-12-13 21:08

    Swing supports changing the Look & feel.

    This tutorial explains how:

    UIManager.setLookAndFeel(lookAndFeelClassName);
    

    Another way is to start your app with the L&F:

    java -Dswing.defaultlaf=com.sun.java.swing.plaf.windows.WindowsLookAndFeel MyApp
    

    Here is a list of 10 very nice look and feels.

提交回复
热议问题