about.pas

来自「《delphi数据库系统开发实例导航》源代码」· PAS 代码 · 共 35 行

PAS
35
字号
unit About;

interface

uses
  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 + -
显示快捷键?