Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Inno Setup 中,我拥有“我接受该协议”和“我不接受该协议”的最终用户许可协议页面。
如何使“我接受”单选按钮默认选中?
您可以LicenseAcceptedRadio从脚本代码中检查控件:
LicenseAcceptedRadio
[Code] procedure InitializeWizard; begin WizardForm.LicenseAcceptedRadio.Checked := True; end;