-
Notifications
You must be signed in to change notification settings - Fork 0
/
UFrmAutor.h
34 lines (32 loc) · 1.09 KB
/
UFrmAutor.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//---------------------------------------------------------------------------
#ifndef UFrmAutorH
#define UFrmAutorH
//---------------------------------------------------------------------------
#include <System.Classes.hpp>
#include <Vcl.Controls.hpp>
#include <Vcl.StdCtrls.hpp>
#include <Vcl.Forms.hpp>
#include <Vcl.ExtCtrls.hpp>
#include <Vcl.Imaging.jpeg.hpp>
//---------------------------------------------------------------------------
class TFrmAutor : public TForm
{
__published: // IDE-managed Components
TImage *ImgAutor;
TLabel *lblNome;
TLabel *lblRa;
TLabel *lblDisciplina;
TLabel *lblCurso;
TLabel *lblPeriodo;
TLabel *lblTermo;
TButton *btnSair;
void __fastcall EvFecharFormularioOnClick(TObject *Sender);
void __fastcall EvFecharFormularioOnClose(TObject *Sender, TCloseAction &Action);
private: // User declarations
public: // User declarations
__fastcall TFrmAutor(TComponent* Owner);
};
//---------------------------------------------------------------------------
extern PACKAGE TFrmAutor *FrmAutor;
//---------------------------------------------------------------------------
#endif