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

Delphi控件源码

开发平台:

Delphi

  1. unit Unit2;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls;
  6. type
  7.   TForm2 = class(TForm)
  8.     GroupBox1: TGroupBox;
  9.     Label1: TLabel;
  10.     RadioButton1: TRadioButton;
  11.     RadioButton2: TRadioButton;
  12.     Label2: TLabel;
  13.     Edit1: TEdit;
  14.     Label3: TLabel;
  15.     Edit2: TEdit;
  16.     Button1: TButton;
  17.     Button2: TButton;
  18.   private
  19.     { Private declarations }
  20.   public
  21.     { Public declarations }
  22.   end;
  23. var
  24.   Form2: TForm2;
  25. implementation
  26. {$R *.dfm}
  27. end.