19 lines
573 B
Java
19 lines
573 B
Java
|
package ProjectElectricLocomotive;
|
||
|
|
||
|
import javax.swing.*;
|
||
|
|
||
|
public class FrameElectricLocomotive extends JFrame {
|
||
|
public FormElectricLocomotive _formLocomotiveCollection;
|
||
|
public FrameElectricLocomotive() {
|
||
|
super();
|
||
|
setTitle("ElectroLoco");
|
||
|
setDefaultCloseOperation(EXIT_ON_CLOSE);
|
||
|
_formLocomotiveCollection = new FormElectricLocomotive();
|
||
|
setContentPane(_formLocomotiveCollection.getPictureBox());
|
||
|
setDefaultLookAndFeelDecorated(false);
|
||
|
setLocation(500, 200);
|
||
|
pack();
|
||
|
setVisible(true);
|
||
|
}
|
||
|
}
|