Advertisement
sergAccount

Untitled

Jan 30th, 2021
590
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.52 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package calcapp;
  7.  
  8. import javax.swing.JFrame;
  9. import javax.swing.JLabel;
  10. import javax.swing.JPanel;
  11.  
  12. public class Okno extends JFrame{    
  13.     // конструктор класса
  14.     public Okno(){
  15.         // setTitle - задаем заголовок главного окна
  16.         setTitle("Калькулятор");
  17.         // setBounds - установим размеры и коорд x, y - расположения окна на экране
  18.         setBounds(10, 10, 800, 600);    
  19.         getContentPane().add(createPanel());
  20.         // для правильного закрытия окна используем
  21.         setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
  22.         setVisible(true); // отображаем окно на экране
  23.     }
  24.     // метод создает панель и устанавливает элементы управления внутри данной панели
  25.     public JPanel createPanel(){
  26.         JPanel p = new JPanel();
  27.         // создаем элемент управления типа JLabel - текст (заголовок)
  28.         JLabel label = new JLabel("Результат: ");  
  29.         // используем метод add для добавление элемента в панель
  30.         p.add(label);
  31.                
  32.         return p;
  33.     }
  34. }
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement