在WiX中的对话框(InstallUISequence)之间插入自定义操作

时间:2013-05-02 11:16:39

标签: wix installer windows-installer custom-action

我有两个自定义对话框(加上必需的ExitDlgFatalErrorDlg等),第一个使用编辑控件设置属性,第二个使用文本显示此属性控制。这是有意义的代码:

<Dialog Id="DialogA" ...>
  <Control Id="ControlEdit" Type="Edit" Property="MY_PROPERTY" .../>
  <Control Id="ControlNext" Type="PushButton" ...>
    <Publish Event="EndDialog" Value="Return" /></Control>
</Dialog>

然后是第二个对话框:

<Dialog Id="DialogB" ...>
  <Control Id="ControlText" Type="Text" Text="[MY_PROPERTY]" .../>
  <Control Id="ControlBack" Type="PushButton" ...>
    <Publish Event="EndDialog" Value="Return" /></Control>
  <Control Id="ControlNext" Type="PushButton" ...>
    <Publish Event="EndDialog" Value="Return" /></Control>
</Dialog>

行动顺序:

<InstallUISequence>
   <Show Dialog="DialogA" Before="MyCustomAction" />
   <Custom Action="MyCustomAction" Before="DialogB" />
   <Show Dialog="DialogB" Before="ExecuteAction" />
</InstallUISequence>

自定义操作会更改MY_PROPERTY的值。我的问题是如何让DialogB中的后退按钮返回DialogA。使用NewDialog很简单,但是我无法在对话框之间执行自定义操作,或者我可以吗?


编辑 - 2013-05-02

在@caveman_dick的回答之后,我尝试改变DialogA几乎就像他说的那样,但我没有使用EndDialog,而是改为Action="NewDialog" Value="DialogB"。但现在没有调用自定义操作。如果我删除Publish事件以转到下一个对话框,则会调用CA.如果我离开@caveman_dick说,我无法从DialogA返回DialogB


编辑 - 2013-05-02

在书 WiX 3.6:Windows Installer XML开发人员指南中搜索后,我发现以下内容:“如果您有多个Publish事件,则必须将条件语句作为其内部文本。否则,所有事件都不会被公布。“

所以来自@caveman_dick的答案是正确的,除了您需要更改为以下内容:

<Publish ...>1</Publish>

1 个答案:

答案 0 :(得分:9)

您可以在按钮上发布自定义操作,而不是在InstallUISequence中安排自定义操作:

<Dialog Id="DialogA" ...>
   <Control Id="ControlEdit" Type="Edit" Property="MY_PROPERTY" .../>
   <Control Id="ControlNext" Type="PushButton" ...>
       <Publish Event="DoAction" Value="MyCustomAction">1</Publish>
       <Publish Event="EndDialog" Value="Return">1</Publish>
   </Control>
</Dialog>

编辑:Publish元素的条件需要明确评估为true才能运行,因此请添加"1"作为Publish元素的文本。