www.pudn.com > 自动计划(autoplan)源代码___强烈推荐 .rar > Unt_About.pas
unit Unt_About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TFrm_About = class(TForm)
Bevel1: TBevel;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Label7: TLabel;
Button1: TButton;
Label8: TLabel;
Label9: TLabel;
Image2: TImage;
Label4: TLabel;
Memo1: TMemo;
procedure Button1Click(Sender: TObject);
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Frm_About: TFrm_About;
implementation
uses Unt_Main;
{$R *.dfm}
procedure TFrm_About.Button1Click(Sender: TObject);
begin
close;
end;
procedure TFrm_About.FormCreate(Sender: TObject);
begin
Label7.Caption := '版本:' + Auto_Plan.strver ;
end;
end.