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

Delphi控件源码

开发平台:

Delphi

  1. unit FrameCForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, MdClockFrame;
  6. type
  7.   TForm1 = class(TForm)
  8.     MdFramedClock1: TMdFramedClock;
  9.     MdFramedClock2: TMdFramedClock;
  10.     procedure MdFramedClock1Timer1Timer(Sender: TObject);
  11.   private
  12.     { Private declarations }
  13.   public
  14.     { Public declarations }
  15.   end;
  16. var
  17.   Form1: TForm1;
  18. implementation
  19. {$R *.DFM}
  20. procedure TForm1.MdFramedClock1Timer1Timer(Sender: TObject);
  21. begin
  22.   MdFramedClock1.Timer1Timer(Sender);
  23.   Caption := TimeToStr (now);
  24. end;
  25. end.