about_form.pas

来自「图书管理系统软件设计说明 一.可行性研究:。。。。。 二.需求分析:。。。。」· PAS 代码 · 共 35 行

PAS
35
字号
unit About_Form;

interface

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

type
  TAbout_F = class(TForm)
    Panel1: TPanel;
    Label1: TLabel;
    Label3: TLabel;
    Image1: TImage;
    procedure FormDestroy(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  About_F: TAbout_F;

implementation

{$R *.dfm}

procedure TAbout_F.FormDestroy(Sender: TObject);
begin
  About_F:=nil;
end;

end.

⌨️ 快捷键说明

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