SecondF.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit SecondF;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     LabelForm: TLabel;
  9.     procedure FormActivate(Sender: TObject);
  10.     procedure FormDeactivate(Sender: TObject);
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16. var
  17.   Form2: TForm2;
  18. implementation
  19. {$R *.DFM}
  20. procedure TForm2.FormActivate(Sender: TObject);
  21. begin
  22.   LabelForm.Caption := 'Form2 Active';
  23.   LabelForm.Color := clRed;
  24. end;
  25. procedure TForm2.FormDeactivate(Sender: TObject);
  26. begin
  27.   LabelForm.Caption := 'Form2 Not Active';
  28.   LabelForm.Color := clBtnFace;
  29. end;
  30. end.