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

Delphi控件源码

开发平台:

Delphi

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