我有一个包含文本框的自定义对话框页面。当用户点击“下一步”按钮时,我想在允许安装继续之前确保文本框中有文本。
如何才能做到这一点?我尝试在 nsDialogsPageLeave 中添加一个检查,如果验证失败,我会在其中调用 nsDialogsPage,但这不起作用......页面底部的按钮在重新加载后不活动。
Var Dialog
Var Text
Var Text_State
Page custom nsDialogsPage nsDialogsPageLeave
Function nsDialogsPage
nsDialogs::Create 1018
Pop $Dialog
${If} $Dialog == error
Abort
${EndIf}
${NSD_CreateText} 0 0 50% 12u $Text_State
Pop $Text
nsDialogs::Show
FunctionEnd
Function nsDialogsPageLeave
${NSD_GetText} $Text $Text_State
FunctionEnd