Is there any easy way to replace standard 2 radio buttons on License Wizard Page with single (checked/unchecked) Check Box in Inno Setup whithout creating Custom Page?
相关问题
- Input type text fields are repeating after uncheck
- jQuery: checkbox does not lose focus (blur) [IE]
- css checkbox style for border color [duplicate]
- Add a checkbox in a listview (C#)
- jQuery - recheck checkboxes after clearing them wi
相关文章
- Firefox remembering radio buttons incorrectly
- Checking & Unchecking Checkboxes inside a JQuery M
- In inno setup how to set the unins000.exe with pro
- How to Uncheck radio button in WPF (MVVM)
- How to select a Radio Button?
- Radio button checked by default when using ng-repe
- Removing the 'box' from the checkbox in An
- Correct Way to Code a Group of Radio Buttons using
Since there are no settings to switch between license radio buttons and some license check box (at least just because there's no component for it on the
WizardForm
) you need to create it by your own.The following code hide the original license radio buttons and creates a check box on the same place at the wizard initialization. This license check box is simulating the radio buttons selections in its
OnClick
event handler to keep their original functionality. Here is the code, which allows you to access the license check box out of the scope of the wizard initialization event. If you don't need to access this check box later on, you can usethis version
of the post: