Swing LookAndFeel设置


UIManager.LookAndFeelInfo[] infos = UIManager.getInstalledLookAndFeels();//获取所有的显示样式
UIManager.setLookAndFeel(infos[0].getClassName());//显示样式的类名
SwingUtilities.updateComponentTreeUI(PlafPanel.this);//动态更新


你可能感兴趣的:(java,swing)