⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dialoglabel.java

📁 Typing fingers Typing programme
💻 JAVA
字号:
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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -