2023-11-20 16:33:32 +04:00
|
|
|
package ProjectElectricLocomotive;
|
|
|
|
import javax.swing.*;
|
2023-12-03 00:14:51 +04:00
|
|
|
import java.awt.event.MouseEvent;
|
|
|
|
import java.awt.event.MouseListener;
|
|
|
|
|
2023-11-20 16:33:32 +04:00
|
|
|
public class FrameLocomotiveConfig extends JFrame{
|
2023-12-03 00:14:51 +04:00
|
|
|
|
|
|
|
|
2023-11-20 16:33:32 +04:00
|
|
|
public FormLocomotiveConfig _formLocomotiveConfig;
|
|
|
|
public FrameLocomotiveConfig() {
|
2023-12-03 00:14:51 +04:00
|
|
|
|
2023-11-20 16:33:32 +04:00
|
|
|
super();
|
|
|
|
setTitle("Конфиг");
|
|
|
|
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
|
|
|
|
_formLocomotiveConfig = new FormLocomotiveConfig();
|
|
|
|
setContentPane(_formLocomotiveConfig.getPictureBoxObject());
|
|
|
|
setDefaultLookAndFeelDecorated(false);
|
|
|
|
setLocation(100, 200);
|
|
|
|
pack();
|
|
|
|
setVisible(true);
|
|
|
|
}
|
2023-12-04 17:29:37 +04:00
|
|
|
|
2023-11-20 16:33:32 +04:00
|
|
|
}
|