12 lines
281 B
Java
12 lines
281 B
Java
import java.awt.*;
|
|
import javax.swing.*;
|
|
|
|
public class Fenetre extends JFrame {
|
|
public Fenetre() {
|
|
this.setSize(768, 1024);
|
|
this.setLocation(100, 100);
|
|
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
this.setLayout(new GridLayout(1, 1));
|
|
this.add(new Image());
|
|
}
|
|
} |