Unit2.pas
上传用户:szyozho
上传日期:2013-04-13
资源大小:3688k
文件大小:0k
源码类别:

教育系统应用

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ExtCtrls, StdCtrls;
  6. type
  7.   Twelcomeform = class(TForm)
  8.     Image1: TImage;
  9.     Label1: TLabel;
  10.     Label2: TLabel;
  11.     Label3: TLabel;
  12.   private
  13.     { Private declarations }
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   welcomeform: Twelcomeform;
  19. implementation
  20. {$R *.dfm}
  21. end.