/
IvanPolyakov
/
LabWork_5
Обзор
Документация
Войти
/
IvanPolyakov
/
LabWork_5
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
Unit1.h
44 строки
1 KB
IvanPolyakov
create: Mendeleev.cpp, MendeleevPCH1.h, Unit1.cpp, Unit1.dfm, Unit1.h, Mendeleev.cbproj
06 май 2026, 08:08
Верифицирован
06 май 2026, 08:08
8c8233d
Код
Авторство
О чём код?
#ifndef Unit1H #define Unit1H //--------------------------------------------------------------------------- #include <System.Classes.hpp> #include <Vcl.Controls.hpp> #include <Vcl.StdCtrls.hpp> #include <Vcl.Forms.hpp> #include <Vcl.Grids.hpp> #include <Vcl.ExtCtrls.hpp> #include <Vcl.Graphics.hpp> //--------------------------------------------------------------------------- class TForm1 : public TForm { __published: // IDE-managed Components TStringGrid *Grid; TPaintBox *PaintBox1; TLabel *LabelInfo; TTimer *Timer1; void __fastcall FormCreate(TObject *Sender); void __fastcall GridClick(TObject *Sender); void __fastcall PaintBox1Paint(TObject *Sender); void __fastcall Timer1Timer(TObject *Sender); private: // ����� �������� ������ ��� ��������� void ShowAtom(int Z, String name); public: __fastcall TForm1(TComponent* Owner); }; //--------------------------------------------------------------------------- extern PACKAGE TForm1 *Form1; //--------------------------------------------------------------------------- #endif