2013-10-15 16 views
1

我有一些應該互相排斥的功能,但這些未來只有在安裝了某些特定軟件的情況下才會顯示。現在我想讓用戶從這些功能中選擇一個安裝.. 任何想法?我不能使用單選按鈕,因爲功能是基於條件的(如果安裝了某些軟件或者我們不能禁用某些單選按鈕......) 另外我正在嘗試在futuretree選擇中執行它......我知道如何允許用戶選擇只有一個功能,(只是呼籲featureselection樹每次更改後costfinalize行動),但這時如果用戶按下一步,然後回來......所有的功能被禁用...如何選擇wix中的一個功能?

 <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> 

回答

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>