fontconst.java

来自「好的超市源码供大家下载」· Java 代码 · 共 23 行

JAVA
23
字号
package view.com.consts;

import java.awt.Font;

/**
 * 字体设置常量接口
 * @author linfeng
 *
 */
public interface FontConst {
  public static final Font SERIF_BOLD_10 = new Font("Serif",Font.BOLD,10);
  public static final Font SERIF_BOLD_15 = new Font("Serif",Font.BOLD,15);
  public static final Font SERIF_BOLD_20 = new Font("Serif",Font.BOLD,20);
  public static final Font SANSSERIF_ITALIC_15 = new Font("SansSerif",Font.ITALIC,15);
  
  public static final Font SANSSERIF_ITALIC_12 = new Font("SansSerif",Font.ITALIC,12);
  public static final Font DIALOG_BOLD_15 = new Font("Dialog",Font.BOLD,15);
  
  public static final Font KAITI_BOLD_15 = new Font("楷体",Font.BOLD,15);
  
  
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?