17 lines
560 B
Java
Raw Normal View History

package ProjectElectricLocomotive;
import javax.swing.*;
public class FrameLocomotiveConfig extends JFrame{
public FormLocomotiveConfig _formLocomotiveConfig;
public FrameLocomotiveConfig() {
super();
setTitle("Конфиг");
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
_formLocomotiveConfig = new FormLocomotiveConfig();
setContentPane(_formLocomotiveConfig.getPictureBoxObject());
setDefaultLookAndFeelDecorated(false);
setLocation(100, 200);
pack();
setVisible(true);
}
}