aboutfrm.~pas
来自「基于Interbase的图书管理系统」· ~PAS 代码 · 共 43 行
~PAS
43 行
unit aboutfrm;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, ExtCtrls, StdCtrls;
type
TaboutForm = class(TForm)
Panel1: TPanel;
Panel2: TPanel;
Image1: TImage;
Label1: TLabel;
Shape1: TShape;
lbAboutok: TLabel;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Shape2: TShape;
Label2: TLabel;
Label6: TLabel;
procedure lbAboutokClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
aboutForm: TaboutForm;
implementation
{$R *.dfm}
procedure TaboutForm.lbAboutokClick(Sender: TObject);
begin
ModalResult:=mrOk;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?