1

我有一个包含文本框的自定义对话框页面。当用户点击“下一步”按钮时,我想在允许安装继续之前确保文本框中有文本。

如何才能做到这一点?我尝试在 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
4

1 回答 1

3

我处理这种情况的方法是验证 leave 函数中的文本,以便您的代码变为:

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

    ${If} $Text_State == ""
        MessageBox MB_OK "Please enter some text"
        Abort
    ${EndIf}

FunctionEnd

这样,用户可以单击“下一步”按钮,但如果没有输入任何文本,他们将收到一条错误消息,并且“中止”将阻止安装程序移动到下一页。

于 2011-10-06T17:43:07.140 回答