11 lines
278 B
Java
11 lines
278 B
Java
import javax.swing.*;
|
|
|
|
public class Program {
|
|
public static void main(String[] args) {
|
|
FormGallery form = new FormGallery();
|
|
form.setSize(320, 240);
|
|
form.setVisible(true);
|
|
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|
|
}
|
|
}
|