How to get the windows native look in Java GUI programming?

后端 未结 3 1128
别跟我提以往
别跟我提以往 2020-12-07 19:05

I am new to Java programming and want to whether it is possible to get the windows native look in Java GUI applications. Obviously Swing won\'t work.

3条回答
  •  庸人自扰
    2020-12-07 19:40

    Use the following:

    UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
    

    Read UIManager and How to Set the Look and Feel for more information.

提交回复
热议问题