📄 hm_about.~pas
字号:
unit hm_About;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, Buttons;
type
Thm_AboutForm = class(TForm)
Panel2: TPanel;
OkSpeedButton: TSpeedButton;
kivenMemo: TMemo;
Panel1: TPanel;
ProgramIcon: TImage;
Label1: TLabel;
Image1: TImage;
Label2: TLabel;
Label3: TLabel;
procedure OkSpeedButtonClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
hm_AboutForm: Thm_AboutForm;
implementation
{$R *.dfm}
procedure Thm_AboutForm.OkSpeedButtonClick(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -