-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.cpp
28 lines (24 loc) · 856 Bytes
/
About.cpp
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
//---------------------------------------------------------------------
#include <vcl.h>
#pragma hdrstop
#include "About.h"
//---------------------------------------------------------------------
#pragma link "RzButton"
#pragma resource "*.dfm"
TAboutBox *AboutBox;
//---------------------------------------------------------------------
__fastcall TAboutBox::TAboutBox(TComponent* AOwner)
: TForm(AOwner)
{
}
//---------------------------------------------------------------------
void __fastcall TAboutBox::FormClose(TObject *Sender, TCloseAction &Action)
{
Action = caFree; //ÊÍ·ÅÄÚ´æ
}
//---------------------------------------------------------------------------
void __fastcall TAboutBox::RzBitBtn1Click(TObject *Sender)
{
Close();
}
//---------------------------------------------------------------------------