package ProjectElectricLocomotive; import javax.swing.*; public class FrameElectricLocomotive extends JFrame { public FormElectricLocomotive _formElectricLocomotive; public FrameElectricLocomotive() { super(); setTitle("Электролокомотив"); setDefaultCloseOperation(DISPOSE_ON_CLOSE); _formElectricLocomotive = new FormElectricLocomotive(); setContentPane(_formElectricLocomotive.getPictureBox()); setDefaultLookAndFeelDecorated(false); setLocation(500, 200); pack(); setVisible(true); } }