FWRadioButton1 := TNewRadioButton.Create(WizardForm);
with FWRadioButton1 do
begin
Parent := WizardForm;
Tag := 1;
Left := ScaleX(400);
Top := ScaleY(130);
Width := ScaleX(300);
Height := ScaleY(25);
Caption := ExpandConstant('run..');
Checked := True;
Font.Style := [fsBold];
Font.transparent:=true
OnClick := @RadioButtonsOnClick;
end;
how do i transparent the captions?
Edit
never mind solved another way