jueves, 4 de abril de 2019

CREACION DE ETIQUETAS LABEL



EJERCICIO 11.

import java.awt.*;
import java.awt.event.*;

public class Etiqueta2 extends Frame {
       public Etiqueta2(String titulo, int x, int y){
       super(titulo);
       setSize(x,y);
       setVisible(true);
       setLayout(new FlowLayout()); // gestor de diseno
     
       agregarEtiquetas();
     
    }
 
     
      public void agregarEtiquetas(){
      Panel panel=new Panel();
      panel.setLayout(new GridLayout(0,1,1,1));
   
     
      Label etiqueta1=new Label("Java");
      etiqueta1.setAlignment(Label.LEFT);
     
      Label etiqueta2=new Label("PHP");
      etiqueta2.setAlignment(Label.LEFT);
     
      Label etiqueta3=new Label("STUDIO");
      etiqueta3.setAlignment(Label.LEFT);
     
      Label etiqueta4=new Label("C++");
      etiqueta4.setAlignment(Label.LEFT);
     
      Label etiqueta5=new Label("PROGRAMACION");
      etiqueta5.setAlignment(Label.LEFT);
     
      panel.add(etiqueta1);
      panel.add(etiqueta2);
      panel.add(etiqueta3);
      panel.add(etiqueta4);
      panel.add(etiqueta5);
     
      this.add(panel);
      validate();
      }
     
     
      public static void main (String[] args){
        Etiqueta2 miVentana=new Etiqueta2("una ventana", 600,400);
   
        miVentana.addWindowListener(new WindowAdapter(){
                        public void windowClosing(WindowEvent e){
                            System.exit(0);
                        }
                });     
        }
}

No hay comentarios:

Publicar un comentario