pasabout.pas
来自「一个图书批发商的通用软件」· PAS 代码 · 共 41 行
PAS
41 行
unit pasabout;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls,main;
type
Tabout = class(TForm)
Label1: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
procedure doabout;
implementation
{$R *.dfm}
procedure doabout;
begin
with Tabout.Create(nil) do
try
showmodal;
Label1.Caption :='你已使用了'+plzfwyjlyt+'次';
finally
free;
end;
end;
procedure Tabout.Button1Click(Sender: TObject);
begin
close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?