Ver Mensaje Individual
  #7 (permalink)  
Antiguo 20/04/2009, 06:22
AlbertoJ2EE
 
Fecha de Ingreso: abril-2009
Mensajes: 4
Antigüedad: 15 años, 8 meses
Puntos: 0
Respuesta: Ayuda aplicacion usando awt

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


public class contenedor extends Frame {

private Button btnVerNumeros;
public Ejercicio4() {
iniciaComponentes();
}
private void iniciaComponentes(){

this.setLayout(new BorderLayout());

this.add(verNumeros=new Button("Ver numeros"));

ActionListener eb = new ActionListener() {
public void actionPerformed(ActionEvent e)
{
nuevaVentana a = new nuevaVentana();
a.setTitle("Nueva ventana");
a.show();
a.setSize(700, 400);

};

};



btnVerNumeros;.addActionListener(eb);
EventosVentana v = new EventosVentana();
this.addWindowListener(v);


};


public static void main(String[] args) {
contenedor a = new contenedor();
a.setTitle("contenedor");
a.show();
a.setSize(700, 400);

}
}

class EventosVentana extends WindowAdapter{

public void windowClosing(WindowEvent we){

System.exit(0);
}



}

class nuevaVentana(){
public nuevaVentana(){
iniciaComponentes();
}

private iniciaComponentes(){

AQUI IMPLEMENTAS EL OBJECTO CON SU METODO Y LO MUESTRAS COMO QUIERAS por layaout o como lo desees


EventosVentana v = new EventosVentana();
this.addWindowListener(v);
}

}


Eso es en el caso de que te pidan dos ventanas.