Ejemplo 1: cómo cambiar el tamaño de fuente en JLabel
label = new JLabel("A label");
label.setFont(new Font("Serif", Font.PLAIN, 14));
Ejemplo 2: fuente JLabel
import java.awt.Font;
import javax.swing.*;
public class SwingDemo {
public static void main(String args[]) {
JFrame frame = new JFrame("Label Example");
JLabel label;
label = new JLabel("First Label");
label.setBounds(50, 50, 100, 30);
label.setFont(new Font("Verdana", Font.PLAIN, 18));
frame.add(label);
frame.setSize(300,300);
frame.setLayout(null);
frame.setVisible(true);
}
}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)