This commit is contained in:
Emmanuel Srivastava
2025-03-05 12:29:30 +01:00
parent 0bb5a7c359
commit ec7b028a90
6 changed files with 55 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import javax.swing.*;
import java.awt.*;
public class MainFond {
public static void main(String[] args) {
JFrame frame = new JFrame("Fond");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
JPanel panel = new JPanel();
Fond test = new Fond();
frame.add(panel, BorderLayout.CENTER);
frame.setSize(500,500);
frame.setLocation(500,250);
frame.setVisible(true);
}
}