20 lines
576 B
Java
20 lines
576 B
Java
package ProjectElectricLocomotive;
|
|
|
|
import javax.swing.*;
|
|
|
|
public class MainFrameElectricLocomotive extends JFrame {
|
|
private FormElectricLocomotive _formElectricLocomotive;
|
|
|
|
public MainFrameElectricLocomotive() {
|
|
super();
|
|
setTitle("ElectroLoco");
|
|
setDefaultCloseOperation(EXIT_ON_CLOSE);
|
|
_formElectricLocomotive = new FormElectricLocomotive();
|
|
setContentPane(_formElectricLocomotive.getPictureBox());
|
|
setDefaultLookAndFeelDecorated(false);
|
|
setLocation(500, 50);
|
|
pack();
|
|
setVisible(true);
|
|
}
|
|
}
|