AboutF.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit AboutF;
  2. interface
  3. uses
  4.   Qt, SysUtils, Classes, QGraphics, QControls, QForms, QDialogs,
  5.   QStdCtrls, QButtons, QExtCtrls;
  6. type
  7.   TAboutBox = class(TForm)
  8.     Panel1: TPanel;
  9.     BitBtn1: TBitBtn;
  10.     Image1: TImage;
  11.     Label1: TLabel;
  12.   private
  13.     { Private declarations }
  14.   end;
  15. var
  16.   AboutBox: TAboutBox;
  17. implementation
  18. {$R *.xfm}
  19. end.