1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
| import java.awt.*;
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
Frame f= new Frame();
TextArea a= new TextArea();
TextField b= new TextField();
f.setTitle("Fenetre de marref billel et mentfakh tahar");
f.setSize(300, 400);
f.setResizable(false);
f.setBackground(Color.red);
f.setVisible(true);
f.add(a);
f.add(b);
b.setSize(5, 5);
//b.setBounds(0, 50, 196, 20);
// j'ai fais les 2 cas et toujours rien
b.setLocation(2, 2);
b.setVisible(true);
//b.setBounds(2, 2, 196, 20);
a.setSize(1, 1);
a.setLocation(50, 50);
a.setVisible(true);
}
} |
Partager