unit Unit3;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, Forms, Controls, Graphics, Dialogs, StdCtrls,
ExtCtrls, ComCtrls, Buttons;
type
{ TForm3 }
TForm3 = class(TForm)
BitBtn1: TBitBtn;
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
RadioButton1: TRadioButton;
RadioButton2: TRadioButton;
RadioButton3: TRadioButton;
RadioButton4: TRadioButton;
procedure BitBtn1Click(Sender: TObject);
procedure Label2Click(Sender: TObject);
procedure RadioButton1Change(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
Form3: TForm3;
implementation
{$R *.lfm}
{ TForm3 }
procedure TForm3.RadioButton1Change(Sender: TObject);
begin
Label1.Font.Color := green
end;
procedure TForm3.BitBtn1Click(Sender: TObject);
begin
end;
end.