Getting java applications to look native on windows - how?

前端 未结 8 2294
悲哀的现实
悲哀的现实 2021-02-08 03:13

Is it possible to use Java to create apps that look native on Windows? I don\'t care if the solution is portable or not, because I only plan to target windows users. I am using

8条回答
  •  后悔当初
    2021-02-08 03:38

    See here: Java™ Tutorials: How to Set the Look and Feel

    try {
        // Set System L&F
        UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    } 
    catch (UnsupportedLookAndFeelException e) {
       // handle exception
    }
    

提交回复
热议问题