ufrm_about.pas
来自「完整的进销存系统。 设计文件及完整的源代码。 Delphi6.0」· PAS 代码 · 共 38 行
PAS
38 行
// **********************************
// * Program name: About *
// * AUTHOR : Guo xuliang *
// * Date : 2005/05/12 *
// **********************************
unit ufrm_about;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, jpeg, StdCtrls;
type
Tfrm_about = class(TForm)
Image1: TImage;
Label2: TLabel;
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frm_about: Tfrm_about;
implementation
{$R *.dfm}
procedure Tfrm_about.FormClose(Sender: TObject; var Action: TCloseAction);
begin
action:=cafree;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?