mihaispr
Administrator
 Inregistrat: acum 17 ani
Postari: 2142
|
|
import javax.swing.*; import java.awt.*; import java.awt.event.*;
public class Fereastra2 extends JFrame implements ActionListener{ private JButton b1; public Fereastra2(){ super("Fereastra 2"); setLayout(new FlowLayout()); //manager de pozitionare b1 = new JButton("HELLO"); b1.addActionListener(this); //trigger apasarea pe buton add(b1); setSize(500,500); setLocationRelativeTo(null); setVisible(true); } public void actionPerformed(ActionEvent ev) {if (b1.getText().equals("HELLO")) {b1.setText("WORLD!"); } else { b1.setText("HELLO!"); } } public static void main(String [] args) {new Fereastra2(); } }
|
|