Red de conocimiento informático - Aprendizaje de programación - java usa GUI para escribir un programa

java usa GUI para escribir un programa

Usando la clase Font

El siguiente es un ejemplo

-------------------- --- ----------------------------------------------- --- --------------------

importar java.awt.Font;

importar javax.swing.JFrame ;

p>

importar javax.swing.JLabel;

la clase pública FontApp extiende JFrame {

public FontApp() {

setDefaultCloseOperation(EXIT_ON_CLOSE);

setSize(400, 300);

setLocationRelativeTo(null);

setResizable(false); p> getContentPane().setLayout( null);

JLabel lblNewLabel = new JLabel("a String size 18");

lblNewLabel.setFont(new Font(null, Font. ITALIC, 18));

p>

lblNewLabel.setBounds(12, 30, 232, 29);

getContentPane().add(lblNewLabel);

JLabel lblNewLabel_1 = new JLabel("b Tamaño de cadena 14");

lblNewLabel_1.setFont(new Font(null, Font.BOLD, 14));

lblNewLabel_1.setBounds( 12, 97, 232, 29);

getContentPane().add(lblNewLabel_1

setVisible(true); p> public static void main(String[] args) {

new FontApp();

}

}