about.pas

来自「完整的公司合同管理系统,基于ACSESS数据库开发,无须安装任何其他插件.附带源」· PAS 代码 · 共 50 行

PAS
50
字号
unit About;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls, Buttons, ExtCtrls;

type
  TfrmAbout = class(TForm)
    Panel1: TPanel;
    Image1: TImage;
    Bevel1: TBevel;
    BitBtn1: TBitBtn;
    Label1: TLabel;
    Label2: TLabel;
    Label3: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    procedure BitBtn1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;
  procedure ShowAbout;
var
  frmAbout: TfrmAbout;

implementation

{$R *.dfm}
procedure ShowAbout;
begin
  Application.CreateForm(TfrmAbout,frmAbout);
  with frmAbout do
       begin
           ShowModal ;
       end;
end;

procedure TfrmAbout.BitBtn1Click(Sender: TObject);
begin
  close;
end;

end.

⌨️ 快捷键说明

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