CREACION DE VENTANAS DESDE UN APPLET

NUEVO EJEMPLO
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
import javax.swing.*;
public class ventana_nueva extends Applet implements ActionListener
{
    Button b1,b2;
    etiqueta ventana_1;
    public void init()
    {
        b1=new Button("VER LA VENTANA");
        add(b1);
        b1.addActionListener(this);
        b2=new Button("OCULTAR VENTANA");
        add(b2);
        b2.addActionListener(this);
        ventana_1=new etiqueta("VENTANA JAVA");
        ventana_1.setSize(300,300);
       
    }
    public void actionPerformed(ActionEvent e)
    {
        if(e.getSource()==b1)
        {
            ventana_1.setVisible(true);
        }
        if(e.getSource()==b2)
        {
            ventana_1.setVisible(false);
        }
    }
   
}//principal
class etiqueta extends Frame
{
    Label l1;
    etiqueta(String titulo)
    {
        super(titulo);
        setLayout(new FlowLayout());
        l1=new Label("HOLA DESDE JAVA ESTO ES UNA VENTANA ");
        add(l1);
    }
}//para crear la ventana


0 comentarios:

Publicar un comentario