mdclock.pas
来自「delphi6 programming example」· PAS 代码 · 共 59 行
PAS
59 行
unit MdClock;
interface
uses
SysUtils, Windows, Messages, Classes, Graphics,
Controls, StdCtrls, ExtCtrls;
type
TMdClock = class (TCustomLabel)
private
FTimer: TTimer;
protected
procedure UpdateClock (Sender: TObject);
public
constructor Create (AOwner: TComponent); override;
published
property Align;
property Alignment;
property Color;
property Font;
property ParentColor;
property ParentFont;
property ParentShowHint;
property PopupMenu;
property ShowHint;
property Transparent;
property Visible;
property Timer: TTimer read FTimer;
end;
procedure Register;
implementation
constructor TMdClock.Create (AOwner: TComponent);
begin
inherited Create (AOwner);
// create the internal timer object
FTimer := TTimer.Create (Self);
FTimer.Name := 'ClockTimer';
FTimer.OnTimer := UpdateClock;
FTimer.Enabled := True;
FTimer.SetSubComponent (True);
end;
procedure TMdClock.UpdateClock (Sender: TObject);
begin
// set the current time as caption
Caption := TimeToStr (Time);
end;
procedure Register;
begin
RegisterComponents('Md', [TMdClock]);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?