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); } }