2022-11-03 22:02:58 +04:00
|
|
|
import javax.swing.*;
|
|
|
|
|
2022-11-05 13:06:59 +04:00
|
|
|
public class Main
|
|
|
|
{
|
|
|
|
public static void main(String[] args)
|
|
|
|
{
|
2022-11-06 15:04:39 +04:00
|
|
|
JFrame frame = new JFrame("Аэробус");
|
|
|
|
frame.setContentPane(new FormParam().MainPanel);
|
2022-11-03 22:02:58 +04:00
|
|
|
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
|
|
|
|
frame.setLocation(500, 200);
|
|
|
|
frame.pack();
|
2022-11-06 15:04:39 +04:00
|
|
|
frame.setSize(800, 500);
|
2022-11-03 22:02:58 +04:00
|
|
|
frame.setVisible(true);
|
|
|
|
}
|
2022-11-03 23:34:20 +04:00
|
|
|
}
|