Etiquetas

Etiquetas

import java.awt.Color;

import java.awt.Font;

 

@SuppressWarnings("serial")

public class Etiquetas extends javax.swing.JFrame{

//VARIABLES PARA DEFINIR 10 ETIQUETAS

                javax.swing.JLabel mensaje,mensaje1,mensaje2,mensaje3,mensaje4,mensaje5,mensaje6,mensaje7,mensaje8,mensaje9;

               

                public Etiquetas(){

                               setSize(700,500);

                               setTitle("VENTANA DE ETIQUETAS");

                               getContentPane().setBackground(Color.pink);

//DEFINICION DE ETIQUETAS            

                               mensaje = new javax.swing.JLabel();

                               mensaje1 = new javax.swing.JLabel();

                               mensaje2 = new javax.swing.JLabel();

                               mensaje3 = new javax.swing.JLabel();

                               mensaje4 = new javax.swing.JLabel();

                               mensaje5 = new javax.swing.JLabel();

                               mensaje6 = new javax.swing.JLabel();

                               mensaje7 = new javax.swing.JLabel();

                               mensaje8 = new javax.swing.JLabel();

                               mensaje9 = new javax.swing.JLabel();

//SE DETERMINA QUE VA A LLEVAR LA VENTANA

                               getContentPane().setLayout(null);

                              

                               mensaje.setText("Hola, de nuevo\"Buenos dias\"");

                               getContentPane().add(mensaje);

                               mensaje1.setText("Recuerda que \"Soy una etiqueta\"");

                               getContentPane().add(mensaje1);

                               mensaje2.setText("Estoy aqui para que no olvides");

                               getContentPane().add(mensaje2);

                               mensaje3.setText("Como me pudes ocupar,");

                               getContentPane().add(mensaje3);

                               mensaje4.setText("No importa cuantas lineas seamos");

                               getContentPane().add(mensaje4);

                               mensaje5.setText("\'Lo que importa\'");

                               getContentPane().add(mensaje5);

                               mensaje6.setText("Es saber cuanto mide la ventana");

                               getContentPane().add(mensaje6);

                               mensaje7.setText("Y colocamos \"Dentro de los parametros permitidos\"");

                               getContentPane().add(mensaje7);

                               mensaje8.setText("Recordando como referencia, el punto inicial(Columna y Fila,");

                               getContentPane().add(mensaje8);

                               mensaje9.setText("Ancho y Largo medido en pixeles 800x600 o 1024x768");

                               getContentPane().add(mensaje9);

//SE LLAMAN LOS ELEMENTOS Y SE LES PROPORCIONAN LA POSICION

//Y EL ANCHO (COLUMNAS) Y LARGO (FILAS)

                               mensaje.setBounds(20,10,350,20);

                               mensaje1.setBounds(80,50,250,20);

                               mensaje2.setBounds(140,90,250,20);

                               mensaje3.setBounds(200,130,250,20);

                               mensaje4.setBounds(260,170,250,20);

                               mensaje5.setBounds(320,210,250,20);

                               mensaje6.setBounds(400,250,250,20);

                               mensaje7.setBounds(200,290,400,20);

                               mensaje8.setBounds(140,330,400,20);

                               mensaje9.setBounds(80,370,400,20);

//CAMBIAR TIPO DE FUENTE Y TAMAÑO, NOMBRE DE VARIABLE                            

                               mensaje.setFont(new Font("Edwardian Script ITC",8,22));

                               mensaje1.setFont(new Font("Forte",8,16));

                               mensaje2.setFont(new Font("Bradley Hand ITC",8,17));

                               mensaje3.setFont(new Font("Vladimir Script",8,22));

                               mensaje4.setFont(new Font("Gigi",8,20));

                               mensaje5.setFont(new Font("Informal Roman",8,20));

                               mensaje6.setFont(new Font("Chiller",8,20));

                               mensaje7.setFont(new Font("Freestyle Script",8,20));

                               mensaje8.setFont(new Font("Chiller",8,20));

                               mensaje9.setFont(new Font("Chiller",8,20));

//CAMBIAR COLOR DEL TEXTO                       

                               mensaje.setForeground(Color.lightGray);

                               mensaje1.setForeground(Color.red);

                               mensaje2.setForeground(Color.white);

                               mensaje3.setForeground(Color.gray);

                               mensaje4.setForeground(Color.green);

                               mensaje5.setForeground(Color.yellow);

                               mensaje6.setForeground(Color.magenta);

                               mensaje7.setForeground(Color.darkGray);

                               mensaje8.setForeground(Color.blue);

                               mensaje9.setForeground(Color.cyan);

                }

                public static void main(String[] args) {

                               new Etiquetas().setVisible(true);

                }

}