BOTONES_SEGUNDA FORMA DE PROGRAMARLOS

NUEVO EJEMPLO
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.applet.Applet;
public class BOTONES_2 extends Applet implements ActionListener
{
public TextField t1,t2;
public Button b1;
public void init()
    {
    t1=new TextField(20);
    t2=new TextField(20);
    b1=new Button("MOSTRAR DATOS");
    add(t1);
    add(t2);
    add(b1);
    b1.setActionCommand("eje");
    b1.addActionListener(this);
    }
    public void actionPerformed(ActionEvent e)
    {
        String msensaje=new String("HOLA DESDE JAVA");
        String comando=e.getActionCommand();
        if(comando.equals("eje"))
        {
            t1.setText("RODRIGO");
            t2.setText("VILLANUEVA NIETO");
        }
    }
}

0 comentarios:

Publicar un comentario