Unit1.~pas
上传用户:autowell
上传日期:2022-06-21
资源大小:16754k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit Unit1;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, jpeg, ExtCtrls, Buttons, ComCtrls, StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Label1: TLabel;
  9.     Edit1: TEdit;
  10.     Label2: TLabel;
  11.     Edit2: TEdit;
  12.     Button1: TButton;
  13.     Button2: TButton;
  14.     BitBtn1: TBitBtn;
  15.     Image1: TImage;
  16.     SpeedButton1: TSpeedButton;
  17.     RadioButton1: TRadioButton;
  18.     RadioButton2: TRadioButton;
  19.   private
  20.     { Private declarations }
  21.   public
  22.     { Public declarations }
  23.   end;
  24. var
  25.   Form1: TForm1;
  26. implementation
  27. {$R *.dfm}
  28. end.