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