本文介绍了Inno Setup的:多Next按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想在我的安装程序屏幕两个按钮,两者都应该最终以用户到下一个屏幕但每次执行它自己的侧逻辑。是否有可能有两个NextButtons两个带你到下一个屏幕,但执行不同的code?做不到这一点,有没有办法如何编程调用WizardForm.NextButton?
I want to have two buttons in my installer screen, both should end up taking the user to the next screen but each performs it's own side-logic. Is it possible to have two NextButtons that both take you to the next screen but execute different code? Failing that, is there a way how to call WizardForm.NextButton programatically?
推荐答案
是
WizardForm.NextButton.OnClick(WizardForm.NextButton);
这篇关于Inno Setup的:多Next按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!