gy.pas
来自「窗口中的多个文本框的值 使用循环方式取得」· PAS 代码 · 共 34 行
PAS
34 行
unit gy;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
Tgyform = class(TForm)
Label1: TLabel;
Label2: TLabel;
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
gyform: Tgyform;
implementation
{$R *.dfm}
procedure Tgyform.Button1Click(Sender: TObject);
begin
gyform.Close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?