bonusreg.pas.svn-base
来自「TFormDesigner allows you move and resize」· SVN-BASE 代码 · 共 45 行
SVN-BASE
45 行
(* GREATIS BONUS * MAIN FILE *)
(* Copyright (C) 1998-2003 Greatis Software *)
(* http://www.greatis.com/delphibonus.htm *)
unit BonusReg;
interface
uses Classes;
procedure Register;
implementation
{$R COOLOR.DCR}
{$R FORMSKIN.DCR}
{$R HISTEDIT.DCR}
{$R ICONLIST.DCR}
{$R LIFECOMP.DCR}
{$R CLOCK.DCR}
{$IFDEF VER140}
{$DEFINE NEWDSGNINTF}
{$ENDIF}
{$IFDEF VER150}
{$DEFINE NEWDSGNINTF}
{$ENDIF}
uses
{$IFDEF NEWDSGNINTF}
DesignIntf, DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
NameProp, Coolor, FormSkin, HistEdit, IconList, ILDesign, LifeComp, Clock;
procedure Register;
begin
RegisterPropertyEditor(TypeInfo(TComponentName),TComponent,'Name',TNameProperty);
RegisterComponents('Greatis',[TCoolorDialog,TSimpleFormSkin,TBitmapFormSkin,THistoryEdit,TIconList,TLife,TClock]);
RegisterComponentEditor(TIconList,TIconListEditor);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?