www.pudn.com > 电话产品防伪伺服系统(tw8).rar > Uform_ex.pas
unit Uform_ex;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls;
type
Tform_ex = class(TForm)
Panel1: TPanel;
Image1: TImage;
BitBtn2: TBitBtn;
procedure BitBtn2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
form_ex: Tform_ex;
implementation
{$R *.dfm}
procedure Tform_ex.BitBtn2Click(Sender: TObject);
begin
close;
end;
end.