?? aboutf.pas
字號:
unit AboutF;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, Buttons, ExtCtrls;
type
TAboutBox = class(TForm)
Panel1: TPanel;
Label1: TLabel;
Label2: TLabel;
Panel2: TPanel;
Image1: TImage;
ButtonOk: TButton;
Label3: TLabel;
procedure ButtonOkClick(Sender: TObject);
private
{ Private declarations }
public
procedure MakeSplash;
end;
var
AboutBox: TAboutBox;
implementation
{$R *.DFM}
procedure TAboutBox.MakeSplash;
begin
BorderStyle := bsNone;
ButtonOk.Visible:=False;
Height:=Height-ButtonOk.Height;
Show;
Update;
end;
procedure TAboutBox.ButtonOkClick(Sender: TObject);
begin
close;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -