Unit3.pas
上传用户:lmk588
上传日期:2013-04-16
资源大小:5120k
文件大小:0k
源码类别:

按钮控件

开发平台:

Delphi

  1. unit Unit3;
  2. interface
  3. uses 
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, Buttons;
  6. type
  7.   TFrame3 = class(TFrame)
  8.     Button1: TButton;
  9.     CheckBox1: TCheckBox;
  10.     RadioButton1: TRadioButton;
  11.     RadioButton2: TRadioButton;
  12.     CheckBox2: TCheckBox;
  13.     SpeedButton1: TSpeedButton;
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19. implementation
  20. {$R *.dfm}
  21. end.