introduction.pas

来自「双鱼林网店销售管理系统+ 想轻松管理你的网店客户信息吗? 想轻松统计每个月的」· PAS 代码 · 共 58 行

PAS
58
字号
unit Introduction;

interface

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

type
  TIntroductionForm = class(TForm)
    Label1: TLabel;
    GroupBox1: TGroupBox;
    Label3: TLabel;
    Label2: TLabel;
    Label4: TLabel;
    Label5: TLabel;
    Label6: TLabel;
    Label7: TLabel;
    Label8: TLabel;
    GroupBox2: TGroupBox;
    Label9: TLabel;
    Label10: TLabel;
    Label11: TLabel;
    Label12: TLabel;
    Label13: TLabel;
    Label14: TLabel;
    Button1: TButton;
    procedure FormShow(Sender: TObject);
    procedure Button1Click(Sender: TObject);
    
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  IntroductionForm: TIntroductionForm;

implementation

{$R *.dfm}



procedure TIntroductionForm.Button1Click(Sender: TObject);
begin
  self.Close;
end;

procedure TIntroductionForm.FormShow(Sender: TObject);
begin
  self.Left := Trunc((screen.Width - Self.Width)/2);
  self.Top := Trunc((screen.Height - self.Height)/2);
end;

end.

⌨️ 快捷键说明

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