delphi 中:if RadioButton1.Value= true then 。。。。此句中为什么一直提示我Value错误?

2025-02-23 13:42:36
推荐回答(3个)
回答1:

RadioButton1只有checked的属性,所以value是不对的

回答2:

if RadioButton1.checked= true then

回答3:

if RadioButton1.checked then