jueves, 4 de abril de 2019

Ingreso TextArea TextField java


ejercicio 14


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

public class TextoAreaFIeld extends Frame {
       public TextoAreaFIeld(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 por TextField", 20);
       add(cajaField);
     
       TextArea areaTexto=new TextArea(5,60);
       areaTexto.setText("primerea linea areaTexto 5,30\n");
       areaTexto.append("segunda linea append \n");
       areaTexto.append("tercera linea comando areaText.append \n");
       add(areaTexto);
     
       validate();
     
       }
     
     
        public static void main (String[] args){
        TextoAreaFIeld miVentana=new TextoAreaFIeld("una ventana", 600,400);
   
        miVentana.addWindowListener(new WindowAdapter(){
                        public void windowClosing(WindowEvent e){
                            System.exit(0);
                        }
                });     
        }     
}

No hay comentarios:

Publicar un comentario