使用几个RadioButton,每个RadioButton都有不同的操作,我想使用case of 方式,如下:
case xxx of
  RadioButton1:
    begin
    end;
  RadioButton:
    begin
    end;
end;请问这样写是否正确,xxx处又如何写,谢谢