SecondF.pas
资源名称:delphi.rar [点击查看]
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit SecondF;
- interface
- uses
- Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
- StdCtrls;
- type
- TForm2 = class(TForm)
- LabelForm: TLabel;
- procedure FormActivate(Sender: TObject);
- procedure FormDeactivate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- Form2: TForm2;
- implementation
- {$R *.DFM}
- procedure TForm2.FormActivate(Sender: TObject);
- begin
- LabelForm.Caption := 'Form2 Active';
- LabelForm.Color := clRed;
- end;
- procedure TForm2.FormDeactivate(Sender: TObject);
- begin
- LabelForm.Caption := 'Form2 Not Active';
- LabelForm.Color := clBtnFace;
- end;
- end.