cbtnreg.pas
来自「动态提示控件」· PAS 代码 · 共 32 行
PAS
32 行
{$I DFS.INC}
unit CBtnReg;
interface
procedure Register;
implementation
uses
{$IFDEF DFS_NO_DSGNINTF}
DesignIntf,
DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
DFSClrBn, ColorAEd, CBtnForm, DFSAbout, Classes;
procedure Register;
begin
RegisterComponents('DFS', [TdfsColorButton]);
RegisterPropertyEditor(TypeInfo(TColorArrayClass), NIL, '',
TColorArrayProperty);
RegisterPropertyEditor(TypeInfo(string), TdfsColorButton, 'Version',
TdfsVersionProperty);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?