25 lines
559 B
Java
25 lines
559 B
Java
|
import javax.swing.*;
|
||
|
import java.awt.*;
|
||
|
import java.awt.event.*;
|
||
|
|
||
|
public class Q5Main{
|
||
|
public static void main(String[] args) {
|
||
|
JFrame fenetre = new JFrame();
|
||
|
fenetre.setSize(500, 300);
|
||
|
fenetre.setLocation(0, 0);
|
||
|
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
||
|
|
||
|
JTextField champsSaisis = new JTextField();
|
||
|
|
||
|
JPanel contenu = new JPanel();
|
||
|
contenu.add(champsSaisis);
|
||
|
|
||
|
FondEvent evenementBouton = new FondEvent(contenu);
|
||
|
|
||
|
champsSaisis.addActionListener(evenementBouton);
|
||
|
|
||
|
fenetre.add(contenu);
|
||
|
fenetre.setVisible(true);
|
||
|
}
|
||
|
}
|