?? uabout.pas
字號:
unit uabout;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls, Buttons;
type
Tabout = class(TForm)
Image2: TImage;
Bevel1: TBevel;
Label1: TLabel;
Label3: TLabel;
Label5: TLabel;
BitBtn1: TBitBtn;
procedure BitBtn1Click(Sender: TObject);
procedure FormClose(Sender: TObject; var Action: TCloseAction);
private
{ Private declarations }
public
{ Public declarations }
end;
var
about: Tabout;
implementation
{$R *.DFM}
procedure Tabout.BitBtn1Click(Sender: TObject);
begin
close;
end;
procedure Tabout.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Release;
about:=NIL;
end;
end.
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -