-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.pas
More file actions
35 lines (28 loc) · 821 Bytes
/
Copy pathabout.pas
File metadata and controls
35 lines (28 loc) · 821 Bytes
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
35
unit about;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls, Buttons;
type
Tf_about = class(TForm)
Bevel1: TBevel;
Image1: TImage;
StaticText1: TStaticText;
StaticText2: TStaticText;
StaticText3: TStaticText;
BitBtn1: TBitBtn;
StaticText4: TStaticText;
procedure BitBtn1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
f_about: Tf_about;
implementation
{$R *.dfm}
//------------------------------------------------------------------------------
procedure Tf_about.BitBtn1Click(Sender: TObject); begin f_about.Close; end;
//------------------------------------------------------------------------------
end.