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, StdCtrls;
  6. type
  7.   TForm1 = class(TForm)
  8.     Label1: TLabel;
  9.     GroupBox1: TGroupBox;
  10.     RadioButton1: TRadioButton;
  11.     RadioButton2: TRadioButton;
  12.     RadioButton3: TRadioButton;
  13.     Button1: TButton;
  14.     Button2: TButton;
  15.     procedure Button1Click(Sender: TObject);
  16.     procedure Button2Click(Sender: TObject);
  17.   private
  18.     { Private declarations }
  19.   public
  20.     { Public declarations }
  21.   end;
  22. var
  23.   Form1: TForm1;
  24. implementation
  25. {$R *.dfm}
  26. procedure TForm1.Button1Click(Sender: TObject);
  27. begin
  28.     if radiobutton1.checked=true then form1.color:=clRed
  29.     else if radiobutton2.checked=true then  form1.color:=clYellow
  30.     else  form1.color:=clBlue
  31. end;
  32. procedure TForm1.Button2Click(Sender: TObject);
  33. begin
  34.        close;
  35. end;
  36. end.