此代码添加了一个项目:
procedure TForm3.Button1Click(Sender: TObject);
begin
cxRadioGroup1.Properties.Items.Add;
cxRadioGroup1.Properties.Items[cxRadioGroup1.Properties.Items.Count -1].Caption := 'new item 1';
end;
但你怎么删除它?
答案 0 :(得分:2)
做
cxRadioGroup1.Properties.Items.Delete(1);
其中1是RadioButton索引。