gbarreg.pas
来自「动态提示控件」· PAS 代码 · 共 32 行
PAS
32 行
{$I DFS.INC}
unit GBarReg;
interface
procedure Register;
implementation
uses
{$IFDEF DFS_NO_DSGNINTF}
DesignIntf,
DesignEditors,
{$ELSE}
DsgnIntf,
{$ENDIF}
GrabBar, DFSAbout, Classes;
{ Add the components to the Delphi Component Palette. You will want to }
{ modify this so that it appears on the page of your choice. }
procedure Register;
begin
RegisterComponents('DFS', [TdfsGrabBar]);
RegisterPropertyEditor(TypeInfo(string), TdfsGrabBar, 'Version',
TDFSVersionProperty);
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?