PIbd-23_Polevoy_S.V._SelfPr.../Program.java

11 lines
278 B
Java
Raw Normal View History

2022-09-25 19:20:16 +04:00
import javax.swing.*;
public class Program {
public static void main(String[] args) {
2022-10-25 16:53:45 +04:00
FormGallery form = new FormGallery();
form.setSize(320, 240);
2022-09-25 19:20:16 +04:00
form.setVisible(true);
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
}
}