fformtest.out

来自「格式化源码的最新板」· OUT 代码 · 共 35 行

OUT
35
字号
unit fFormTest;

interface

uses
  Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  StdCtrls, Buttons;

type
  TFormTest = class(TForm)
    bbClose: TBitBtn;
    mNotice: TMemo;
    procedure bbCloseClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  FormTest: TFormTest;

implementation

{$R *.DFM}

procedure TFormTest.bbCloseClick(Sender: TObject);
begin
  Close;
  Application.Terminate;
  Halt;
end;

end.

⌨️ 快捷键说明

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