-
Notifications
You must be signed in to change notification settings - Fork 2
/
InformWnd.pas
54 lines (44 loc) · 1.07 KB
/
InformWnd.pas
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
52
53
54
unit InformWnd;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ComCtrls;
type
TForm3 = class(TForm)
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label4: TLabel;
ProcessingFileList: TListView;
GroupBox1: TGroupBox;
GroupBox2: TGroupBox;
Button1: TButton;
Label9: TLabel;
Label11: TLabel;
SerialNumberLabel: TLabel;
FileSystemLabel: TLabel;
UsedSizeLabel: TLabel;
FreeSizeLabel: TLabel;
DriveSizeLabel: TLabel;
DriveNameLabel: TLabel;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
end;
implementation
uses
PopupWindow;
{$R *.dfm}
procedure TForm3.FormClose(Sender: TObject; var Action: TCloseAction);
begin
TPopupWnd(Tag).AdditionalInfoLabel.Enabled := true;
end;
procedure TForm3.Button1Click(Sender: TObject);
begin
Close;
end;
procedure TForm3.FormCreate(Sender: TObject);
begin
Self.Font := Application.MainForm.Font;
end;
end.