📄 introduction.pas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -