Wix安装程序 - 向WixUI_Minimal添加自定义对话框

时间:2016-02-26 21:09:45

标签: wix

请注意 - 我不想在WixUI_Minimal中更改任何内容(如果可能)。

我试图在WixUI_Minimal中的WelcomeEulaDlg之后添加一个自定义对话框(UserTypeDlg),即用户在接受许可后单击“安装”按钮。这部分工作正常

在自定义对话框中,我提供了后退按钮,它工作正常,并将我带到WelcomeEulaDlg。但是,当我再次单击“安装”按钮时,它会直接启动安装而不显示我的自定义对话框。

有人可以帮我解决这个问题吗?

我的代码是 -     定制对话框                                                           - >

      <Dialog Id="UserTypeDlg" Width="370" Height="270" Title="[ProductName] Setup" NoMinimize="yes">
        <!--<Control Id="InstallButton" Type="PushButton" Text="Install" Height="17" Width="56" X="245" Y="243">
          <Publish Event="EndDialog" Value="Return" />
        </Control>-->
        <Control Id="UserTypeRadioGroup" Type="RadioButtonGroup" Property="UserTypeRadioButtonGroup" Height="100" Width="100" X="50" Y="50">
          <RadioButtonGroup Property="UserTypeRadioButtonGroup">
            <RadioButton Value="1" Text="Admin" Height="17" Width="50" X="50" Y="0" />
            <RadioButton Value="2" Text="Domain User" Height="17" Width="100" X="50" Y="20" />
          </RadioButtonGroup>
        </Control>
        <!--<Control Id="Next" Type="PushButton" X="245" Y="243" Width="100" Height="17" Text="Next">
          <Publish Event="EndDialog" Value="Return" />
        </Control>-->
        <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" >
          <Publish Property="WixUI_InstallMode" Value="Update">Installed AND PATCH</Publish>
        </Control>
        <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
          <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
        </Control>
        <!--<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.WelcomeDlgBitmap)" />-->
        <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)">
          <Publish Event="NewDialog" Value="WelcomeEulaDlg">1</Publish>
        </Control>

      </Dialog>

      <!--<Dialog Id="AdminDlg" Width="370" Height="270" Title="[ProductName] Setup" NoMinimize="no">
      </Dialog>-->
    </UI>
  </Fragment>
</Wix>

产品安装文件: -

    <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
  <Fragment>
    <UI Id="UserTypeUI">
      <Property Id="UserTypeRadioButtonGroup" Value="2" />
      <!--<TextStyle Id="Tahoma_Regular" FaceName="Tahoma" Size="8" />
      <Property Id="DefaultUIFont" Value="Tahoma_Regular"/>-->

      <Dialog Id="UserTypeDlg" Width="370" Height="270" Title="[ProductName] Setup" NoMinimize="yes">
        <!--<Control Id="InstallButton" Type="PushButton" Text="Install" Height="17" Width="56" X="245" Y="243">
          <Publish Event="EndDialog" Value="Return" />
        </Control>-->
        <Control Id="UserTypeRadioGroup" Type="RadioButtonGroup" Property="UserTypeRadioButtonGroup" Height="100" Width="100" X="50" Y="50">
          <RadioButtonGroup Property="UserTypeRadioButtonGroup">
            <RadioButton Value="1" Text="Admin" Height="17" Width="50" X="50" Y="0" />
            <RadioButton Value="2" Text="Domain User" Height="17" Width="100" X="50" Y="20" />
          </RadioButtonGroup>
        </Control>
        <!--<Control Id="Next" Type="PushButton" X="245" Y="243" Width="100" Height="17" Text="Next">
          <Publish Event="EndDialog" Value="Return" />
        </Control>-->
        <Control Id="Next" Type="PushButton" X="236" Y="243" Width="56" Height="17" Default="yes" Text="!(loc.WixUINext)" >
          <Publish Property="WixUI_InstallMode" Value="Update">Installed AND PATCH</Publish>
        </Control>
        <Control Id="Cancel" Type="PushButton" X="304" Y="243" Width="56" Height="17" Cancel="yes" Text="!(loc.WixUICancel)">
          <Publish Event="SpawnDialog" Value="CancelDlg">1</Publish>
        </Control>
        <!--<Control Id="Bitmap" Type="Bitmap" X="0" Y="0" Width="370" Height="234" TabSkip="no" Text="!(loc.WelcomeDlgBitmap)" />-->
        <Control Id="Back" Type="PushButton" X="180" Y="243" Width="56" Height="17" Text="!(loc.WixUIBack)">
          <Publish Event="NewDialog" Value="WelcomeEulaDlg">1</Publish>
        </Control>

      </Dialog>

      <!--<Dialog Id="AdminDlg" Width="370" Height="270" Title="[ProductName] Setup" NoMinimize="no">
      </Dialog>-->
    </UI>
  </Fragment>
</Wix>

0 个答案:

没有答案