19 lines
588 B
Java
Raw Normal View History

package ProjectStormtrooper;
import javax.swing.*;
public class FramePlaneCollection extends JFrame {
FormPlaneCollection _formPlaneCollection;
public FramePlaneCollection() {
super();
setTitle("Набор самолетов");
setDefaultCloseOperation(EXIT_ON_CLOSE);
_formPlaneCollection = new FormPlaneCollection();
setContentPane(_formPlaneCollection.getPanelWrapper());
2023-12-17 19:08:22 +04:00
this.setJMenuBar(_formPlaneCollection.getMenuBar());
setDefaultLookAndFeelDecorated(false);
setLocation(300, 100);
pack();
}
}