dialoglabel.java

来自「Typing fingers Typing programme」· Java 代码 · 共 19 行

JAVA
19
字号
import java.awt.*;
import javax.swing.*;
/**	This is a customized label that defines its own colors and font.   */
public class DialogLabel extends JLabel{
	DialogLabel(String cap,int alignment){
		super(cap,alignment);
		setForeground(new Color(128,0,0));
		setFont(new Font("Times new Roman",Font.BOLD,14));
	}
	DialogLabel(String cap){
		this(cap,SwingUtilities.LEFT);
	}
	DialogLabel(String cap,Font f){
		this(cap,SwingUtilities.LEFT);
		setFont(f);
	}
}

⌨️ 快捷键说明

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