package com.usc.base.JLabel; import java.awt.Color; import java.awt.Font; import javax.swing.JLabel; /** * @author 作者:Sky_in_night * @date 创建时间:2018年2月15日 下午4:36:05 * @ProjectName 项目名称:HappyNewYear * @FileName 文件名称:com.usc.base.JLabel.BaseLabel.java * */ public class BaseLabel extends JLabel { /** * */ private static final long serialVersionUID = 1L; // 设置默认的字体为游梦手迹,粗体,字体大小为45 private static final Font LABELFONT = new Font("楷体", Font.BOLD, 45); public BaseLabel(String character) { super(character); // 设置字体为黑色 setForeground(Color.black); // 设置为默认字体 setFont(LABELFONT); } }

阿远远 LV8
2019年12月12日
simple丶余心 LV21
2019年10月30日
dengss LV11
2019年5月10日
ZKsrw丶 LV4
2018年10月28日
caiyingwenwang LV18
2018年8月16日
陌上花开AAA LV4
2018年7月11日
Dvvvv123qwe LV6
2018年7月3日
hongdalao LV1
2018年5月4日
1165343269 LV1
2018年4月21日
yangbiao LV5
2018年4月13日