How can I create a “modern looking” Java desktop application?

后端 未结 9 1901
渐次进展
渐次进展 2021-01-30 08:40

Similar questions to this are asked periodically, but many of these answers are outdated.

I need to build a cross-platform desktop application in Java with a GUI of comp

9条回答
  •  长情又很酷
    2021-01-30 09:08

    Have you looked into JavaFX 2.0? It is designed to interop easily with Swing, and has many modern 'good looking' controls.

    Also, as lrAndroid mentions, a Swing app can look like a native app if you set the system look and feel with:

    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    

提交回复
热议问题