unit9.pas
来自「Of the password is: Server: "1." 」· PAS 代码 · 共 43 行
PAS
43 行
unit Unit9;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ExtCtrls;
type
Tmimasl = class(TForm)
Panel1: TPanel;
Edit1: TEdit;
Panel2: TPanel;
BitBtn1: TBitBtn;
procedure BitBtn1Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
mimasl: Tmimasl;
implementation
uses Unit1;
{$R *.dfm}
procedure Tmimasl.BitBtn1Click(Sender: TObject);
begin
close;
end;
procedure Tmimasl.FormClose(Sender: TObject; var Action: TCloseAction);
begin
mimasla1 :=edit1.text;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?