about1.~pas

来自「实现图书馆数据库管理功能」· ~PAS 代码 · 共 49 行

~PAS
49
字号
unit about1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, ExtCtrls, StdCtrls, Menus,ImgList, jpeg;

type
  Tabout = class(TForm)
    Image_close: TImage;
    ImageList1: TImageList;
    PopupMenu1: TPopupMenu;
    N2: TMenuItem;
    Image_title: TImage;
    Label1: TLabel;
    Label2: TLabel;
    Label4: TLabel;
    Bevel1: TBevel;
    Image_right: TImage;
    Image_bottom: TImage;
    Image_left: TImage;
    Image_bian_top: TImage;
    lable: TLabel;
    Image4: TImage;
    Image2: TImage;
    Image1: TImage;
    procedure FormClick(Sender: TObject);
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  about: Tabout;

implementation

{$R *.dfm}


procedure Tabout.FormClick(Sender: TObject);
begin
close;
end;

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?