This commit is contained in:
2023-04-04 14:03:16 +02:00
parent 7021891e9c
commit e32d4de827
111 changed files with 1928 additions and 6 deletions

View File

@@ -0,0 +1,51 @@
import java.awt.GridLayout;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JPanel;
public class Direction extends JFrame{
GridLayout grid = new GridLayout(2, 2);
public Direction(){
grid.setHgap(350);
grid.setVgap(350);
JFrame frame = new JFrame();
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(1900,900);
frame.setVisible(true);
JPanel panel = new JPanel();
frame.setContentPane(panel);
panel.setLayout(grid);
JButton btn1 = new JButton("");
btn1.setSize(20,50);
panel.add(btn1);
JButton btn2 = new JButton("");
panel.add(btn2);
JButton btn3 = new JButton("");
panel.add(btn3);
JButton btn4 = new JButton("");
panel.add(btn4);
}
public static void main(String[] args) {
new Direction();
}
}

View File

@@ -0,0 +1,29 @@
//MELIANI SAMY (TP1)
import javax.swing.*;
import java.awt.*;
public class Directions {
public static void main(String[] args) {
// un objet pour servir de fenetre
JFrame fenetre = new JFrame();
// on configure la fenetre
fenetre.setSize(800, 800);
fenetre.setLocation(0, 0);
fenetre.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
GridLayout layout = new GridLayout(2, 2);
fenetre.setLayout(layout);
fenetre.add(new Button(""));
fenetre.add(new Button(""));
fenetre.add(new Button(""));
fenetre.add(new Button(""));
layout.setHgap(500);
layout.setVgap(500);
layout.setAlignment(100);
fenetre.setVisible(true);
}
}