jueves, 4 de abril de 2019
Creacion de etiquetas en java label
ejercicio 10
codigo
import java.awt.*;
import java.awt.event.*;
public class Etiqueta10 extends Frame {
public Button boton;
public Etiqueta10(String titulo, int x, int y){
super(titulo);
setSize(x,y);
setVisible(true);
setLayout(new FlowLayout()); // gestor de diseno
boton = new Button("Un Boton " );
this.add(boton);
agregarEtiquetas();
}
public void agregarEtiquetas(){
Panel panel=new Panel();
panel.setLayout(new GridLayout(0,1,1,1));
Label etiqueta1= new Label(); //creacion de una etiqueta1
etiqueta1.setText("Etiqueta 1");
Label etiqueta2=new Label("ingreso de datos");
etiqueta2.setAlignment(Label.CENTER);
Label etiqueta3=new Label("configuracion del sistema");
etiqueta3.setAlignment(Label.RIGHT);
panel.add(etiqueta1);
panel.add(etiqueta2);
panel.add(etiqueta3);
this.add(panel);
validate();
}
public static void main (String[] args){
Etiqueta10 miVentana=new Etiqueta10("una ventana", 600,400);
miVentana.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
}
}
Suscribirse a:
Enviar comentarios (Atom)
No hay comentarios:
Publicar un comentario