uabout.pas

来自「本DSC DEMO包括三部分功能: 1、 作为数据服务中心的功能; 2、 注」· PAS 代码 · 共 34 行

PAS
34
字号
unit uabout;

interface

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

type
  Tfabout = class(TForm)
    Label1: TLabel;
    Label2: TLabel;
    Button1: TButton;
    procedure Button1Click(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  fabout: Tfabout;

implementation

{$R *.dfm}

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

end.

⌨️ 快捷键说明

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