JAVA Swing主题 简洁扁平化苹果风格主题

1、多的不说,直接贴代码了,使用起来非常简单,直接在自己的main方法里贴上如下代码即可看看效果

InitGlobalFont(new Font(UICons.FONT_TYPE, Font.PLAIN, UICons.FONT_SIZE));
		try {
			org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();
			BeautyEyeLNFHelper.frameBorderStyle = BeautyEyeLNFHelper.FrameBorderStyle.translucencySmallShadow;
			org.jb2011.lnf.beautyeye.BeautyEyeLNFHelper.launchBeautyEyeLNF();
			UIManager.put("RootPane.setupButtonVisible", false);
			//BeautyEyeLNFHelper.translucencyAtFrameInactive = false;
			//UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
		} catch (Exception e) {
			System.err.println("set skin fail!");
		}
		
	private static void InitGlobalFont(Font font) {
		FontUIResource fontRes = new FontUIResource(font);
		for (Enumeration keys = UIManager.getDefaults().keys(); keys.hasMoreElements();) {
			Object key = keys.nextElement();
			Object value = UIManager.get(key);
			if (value instanceof FontUIResource) {
				UIManager.put(key, fontRes);
			}
		}
	} 
  

注:

1、主题选择可根据自己需求对以上代码第四行做相应的修改,选择对应的不同风格的主题,如下图:

JAVA Swing主题 简洁扁平化苹果风格主题_第1张图片


2、这里提供了此主题的jar包文件,可根据需要下载使用:下载jar包,此处简单提供两个界面案例,保密需要马赛克还是要走一波的...

JAVA Swing主题 简洁扁平化苹果风格主题_第2张图片

JAVA Swing主题 简洁扁平化苹果风格主题_第3张图片


2、顺带介绍下swing的常见的其它风格的主题

UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
//UIManager.setLookAndFeel("com.jtattoo.plaf.fast.FastLookAndFeel");
//UIManager.setLookAndFeel("com.jtattoo.plaf.acryl.AcrylLookAndFeel");


你可能感兴趣的:(JAVA)