如何将无线电组线分配给 Editbox.text

How to assign a radiogroup line to a Editbox.text

我正在尝试使用单选按钮旁边的行或文本分配给编辑框的文本或任何其他类型的输出:) 我正在使用 Delphi 2010

Items property contains the radio button captions, and the ItemIndex 属性 包含当前选中的单选按钮的索引。例如:

procedure TForm1.RadioGroup1Click(Sender: TObject);
begin
  Edit1.Text := RadioGroup1.Items[RadioGroup1.ItemIndex];
end;