⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 wait.~pas

📁 网吧商品销售平台
💻 ~PAS
字号:
unit wait;

interface

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

type
  TWaitReceiveForm = class(TForm)
    RzBackground1: TRzBackground;
    RzLabel1: TRzLabel;
    Button1: TButton;
    procedure FormClose(Sender: TObject; var Action: TCloseAction);
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  WaitReceiveForm: TWaitReceiveForm;

implementation

uses client;
{$R *.dfm}

procedure TWaitReceiveForm.FormClose(Sender: TObject;
  var Action: TCloseAction);
begin
if ClientForm.not_allowed_close=True then
begin
action:=canone;
end
else
action:=cafree;
end;

procedure TWaitReceiveForm.Button1Click(Sender: TObject);
begin
close;
end;

end.

⌨️ 快捷键说明

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