2022-11-05 22:34:57 +04:00
|
|
|
import javax.swing.*;
|
|
|
|
|
|
|
|
public class Program {
|
|
|
|
public static void main(String[] args){
|
2022-11-21 21:34:45 +04:00
|
|
|
FormGallery form = new FormGallery();
|
|
|
|
form.setSize(500, 300);
|
|
|
|
form.setVisible(true);
|
|
|
|
form.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
|
2022-11-05 22:34:57 +04:00
|
|
|
}
|
|
|
|
}
|