about.pas

来自「以多个信息系统为例」· PAS 代码 · 共 35 行

PAS
35
字号
unit About;interfaceuses  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,  StdCtrls, ExtCtrls, Buttons;type  TCourseSelectClientAbout = class(TForm)    CtlImage: TSpeedButton;    NameLbl: TLabel;    OkBtn: TButton;    CopyrightLbl: TLabel;    DescLbl: TLabel;  end;procedure ShowCourseSelectClientAbout;implementation{$R *.DFM}procedure ShowCourseSelectClientAbout;begin  with TCourseSelectClientAbout.Create(nil) do    try      ShowModal;    finally      Free;    end;end;end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?