1

我有一些应该是互斥的功能,但只有在安装了某些特定软件时才会显示这些未来。现在我想允许用户从这些功能中选择一个来安装..有什么想法吗?我不能使用单选按钮,因为功能是基于条件的(如果安装了某些软件,我们不能只禁用一些单选按钮......)而且我试图在未来树选择中这样做......我知道如何允许用户只选择一个功能,(只需在功能选择树上的每次更改后调用 costfinalize 操作)但是如果用户按下一步然后返回...所有功能都被禁用...

        <Feature Id='FM10' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 10 files" Description="Frame Maker 10 files.">
            <ComponentRef Id='FAMSMainFM10DLL_component' />
            <Condition Level="0">NOT FM10HOME AND NOT REMOVE</Condition>
            <Condition Level="5000"><![CDATA[(&FM72 = 3 OR &FM72 = 4 OR &FM71 = 3 OR &FM71 = 4 OR &FM70 = 3 OR &FM70 = 4 OR &FM8 = 3 OR &FM8 = 4) AND FM10HOME]]></Condition>

        </Feature>

        <Feature Id='FM8' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 8 files" Description="Frame Maker 8 files.">
            <ComponentRef Id='FAMSMainFM8DLL_component' />
            <Condition Level="0">NOT FM80HOME AND NOT REMOVE</Condition>
            <Condition Level="5001"><![CDATA[(&FM72 = 3 OR &FM72 = 4 OR &FM71 = 3 OR &FM71 = 4 OR &FM70 = 3 OR &FM70 = 4 OR &FM10 = 3 OR &FM10 = 4) AND FM80HOME]]></Condition>
        </Feature>

        <Feature Id='FM70' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7 files" Description="Frame Maker 7.0 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="0">NOT FM70HOME AND NOT FM71HOME AND NOT FM72HOME AND NOT REMOVE</Condition>
            <Condition Level="5001"><![CDATA[(&FM71 = 3 OR &FM71 = 4 OR &FM72 = 3 OR &FM72 = 4 OR &FM10 = 3 OR &FM10 = 4 OR &FM8 = 3 OR &FM8 = 4) AND FM70HOME]]></Condition>
        </Feature>

        <Feature Id='FM71' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7 files" Description="Frame Maker 7.1 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="0">NOT FM70HOME AND NOT FM71HOME AND NOT FM72HOME AND NOT REMOVE</Condition>
            <Condition Level="5001"><![CDATA[(&FM10 = 3 OR &FM10 = 4 OR &FM8 = 3 OR &FM8 = 4) AND FM71HOME]]></Condition>
        </Feature>

        <Feature Id='FM72' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7 files" Description="Frame Maker 7.2 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="0">NOT FM70HOME AND NOT FM71HOME AND NOT FM72HOME AND NOT REMOVE</Condition>
            <Condition Level="5001"><![CDATA[(&FM70 = 3 OR &FM70 = 4 OR &FM71 = 3 OR &FM71 = 4 OR &FM10 = 3 OR &FM10 = 4 OR &FM8 = 3 OR &FM8 = 4) AND FM72HOME]]></Condition>
        </Feature>
4

1 回答 1

0

最后我解决了:

        <Feature Id='FM10' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 10 files" Description="Frame Maker 10 files.">
            <ComponentRef Id='FAMSMainFM10DLL_component' />
            <Condition Level="5000">FM10T = "LOCKED" AND FM10HOME</Condition>
            <Condition Level="1">FM10T = "UNLOCKED" AND FM10HOME</Condition>
            <Condition Level="0">NOT FM10HOME AND NOT REMOVE</Condition>
        </Feature>

        <Feature Id='FM8' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 8 files" Description="Frame Maker 8 files.">
            <ComponentRef Id='FAMSMainFM8DLL_component' />
            <Condition Level="5001">FM8T = "LOCKED" AND FM80HOME</Condition>
            <Condition Level="1">FM8T = "UNLOCKED" AND FM80HOME</Condition>
            <Condition Level="0">NOT FM80HOME AND NOT REMOVE</Condition>
        </Feature>

        <Feature Id='FM70' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7.0 files" Description="Frame Maker 7.0 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="5001">FM7T = "LOCKED" AND FM70HOME</Condition>
            <Condition Level="1">FM70T = "UNLOCKED" AND FM70HOME</Condition>
            <Condition Level="0">NOT FM70HOME AND NOT REMOVE</Condition>
        </Feature>

        <Feature Id='FM71' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7.1 files" Description="Frame Maker 7.1 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="5001">FM71T = "LOCKED" AND FM71HOME</Condition>
            <Condition Level="1">FM71T = "UNLOCKED" AND FM71HOME</Condition>
            <Condition Level="0">NOT FM71HOME AND NOT REMOVE</Condition>
        </Feature>

        <Feature Id='FM72' AllowAdvertise="no" TypicalDefault="install" ConfigurableDirectory="INSTALLDIR" Level='5000' Title="Frame Maker 7.2 files" Description="Frame Maker 7.2 files.">
            <ComponentRef Id='FAMSMainFM7DLL_component' />
            <Condition Level="5001">FM72T = "LOCKED" AND FM72HOME</Condition>
            <Condition Level="1">FM72T = "UNLOCKED" AND FM72HOME</Condition>
            <Condition Level="0">NOT FM72HOME AND NOT REMOVE</Condition>
        </Feature>

和:

        <Control Id="Tree" Type="SelectionTree" X="25" Y="85" Width="175" Height="115" Property="_BrowseProperty" Sunken="yes" TabSkip="no" Text="!(loc.CustomizeDlgTree)" >
            <Publish Property="FM70T" Value="UNLOCKED">MsiSelectionTreeSelectedFeature = "FM70" AND (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM71T" Value="UNLOCKED">MsiSelectionTreeSelectedFeature = "FM71" AND (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM72T" Value="UNLOCKED">MsiSelectionTreeSelectedFeature = "FM72" AND (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM8T" Value="UNLOCKED">MsiSelectionTreeSelectedFeature = "FM8" AND (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM10T" Value="UNLOCKED">MsiSelectionTreeSelectedFeature = "FM10" AND (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>

            <Publish Property="FM70T" Value="LOCKED">NOT MsiSelectionTreeSelectedFeature = "FM70" AND NOT (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM71T" Value="LOCKED">NOT MsiSelectionTreeSelectedFeature = "FM71" AND NOT (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM72T" Value="LOCKED">NOT MsiSelectionTreeSelectedFeature = "FM72" AND NOT (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM8T" Value="LOCKED">NOT MsiSelectionTreeSelectedFeature = "FM8" AND NOT (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Property="FM10T" Value="LOCKED">NOT MsiSelectionTreeSelectedFeature = "FM10" AND NOT (MsiSelectionTreeSelectedAction = 3 OR MsiSelectionTreeSelectedAction = 4)</Publish>
            <Publish Event="DoAction" Value="CostFinalize">1</Publish>
        </Control>
于 2013-10-15T08:52:09.753 回答