Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package game;
- import javax.swing.JFrame;
- public class Okno extends JFrame{
- int slogn;
- public Okno(int slogn){
- this.slogn = slogn;
- //
- setTitle("Игра1");
- // установка фокуса
- setFocusable(true);
- // запрет на изменение размеров главного окна
- setResizable(false);
- setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
- // позиция и размеры окна
- this.setBounds(10, 10, 800, 620);
- // устанавливаем панель для главного окна
- //
- setVisible(true);
- }
- //
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement