18 lines
564 B
Java
18 lines
564 B
Java
package ProjectStormtrooper;
|
|
|
|
import javax.swing.*;
|
|
|
|
public class FrameDoubleParametrized extends JFrame {
|
|
public FormDoubleParametrized _formDoubleParametrized;
|
|
public FrameDoubleParametrized() {
|
|
super();
|
|
setTitle("Генерация самолетов");
|
|
setDefaultCloseOperation(DISPOSE_ON_CLOSE);
|
|
_formDoubleParametrized = new FormDoubleParametrized();
|
|
setContentPane(_formDoubleParametrized.getPictureBox());
|
|
setDefaultLookAndFeelDecorated(false);
|
|
setLocation(300, 100);
|
|
pack();
|
|
}
|
|
}
|