-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathAboutDialogForm.pas
More file actions
51 lines (41 loc) · 1 KB
/
AboutDialogForm.pas
File metadata and controls
51 lines (41 loc) · 1 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
unit AboutDialogForm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, pngimage, ExtCtrls;
type
TAboutDialog = class(TForm)
Image1: TImage;
Label1: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Button1: TButton;
Label2: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
lbIDEVersion: TLabel;
lbCompilerVersion: TLabel;
lbEmulatorVersion: TLabel;
private
{ Private declarations }
public
{ Public declarations }
constructor Create(AOwner: TComponent); override;
end;
var
AboutDialog: TAboutDialog;
implementation
uses
IDEVersion, CompilerVersion, EmulatorVersion;
{$R *.dfm}
{ TAboutDialog }
constructor TAboutDialog.Create(AOwner: TComponent);
begin
inherited;
lbIDEVersion.Caption := CIDEVersion;
lbCompilerVersion.Caption := CCompilerVersion;
lbEmulatorVersion.Caption := CEmulatorVersion;
end;
end.