aboutform.pas
来自「《Delphi COM深入编程》原书光盘」· PAS 代码 · 共 35 行
PAS
35 行
unit AboutForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
TCheckListBoxXAbout = class(TForm)
CtlImage: TSpeedButton;
NameLbl: TLabel;
OkBtn: TButton;
CopyrightLbl: TLabel;
DescLbl: TLabel;
end;
procedure ShowCheckListBoxXAbout;
implementation
{$R *.DFM}
procedure ShowCheckListBoxXAbout;
begin
with TCheckListBoxXAbout.Create(nil) do
try
ShowModal;
finally
Free;
end;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?