Ejercicio 15.
import java.awt.*;
import java.awt.event.*;
public class TextoArea2 extends Frame{
public TextoArea2(String titulo, int x, int y){
super("Ingreso de datos desde comando(super)");
setSize(x,y);
setVisible(true);
setLayout(new FlowLayout()); // gestor de diseno
this.agregarTexto();
}
public void agregarTexto(){
TextField cajaField = new TextField("ingreso location 30 ", 30);
TextField cajaField2 = new TextField("ingreso anotation 20", 20);
add(cajaField);
add(cajaField2);
TextArea areaTexto2=new TextArea(5,60);
areaTexto2.setText("numero 1: \n");
areaTexto2.append("numero 2: \n");
areaTexto2.append("numero 3: \n");
add(areaTexto2);
TextArea areaTexto3=new TextArea(5,60);
areaTexto3.setText("primera \n");
areaTexto3.append("segunda \n");
areaTexto3.append("tercera\n");
add(areaTexto3);
validate();
}
public static void main (String[] args){
TextoArea2 miVentana=new TextoArea2("una ventana", 600,400);
miVentana.addWindowListener(new WindowAdapter(){
public void windowClosing(WindowEvent e){
System.exit(0);
}
});
}
}
No hay comentarios:
Publicar un comentario