0
我以前安裝過的應用程序(版本1.0) 現在我必須更改安裝程序以將應用程序升級到2.0版本。但是我想在前面的安裝中設置用戶指定的所有數據。Wix。有條件地設置控件的文本屬性
如果我有一些屬性中的所有數據,我如何有條件地填充嚮導中的文本字段。
喜歡的東西:
<?if <![CDATA[ISUPGRADE]]> ?>
<Property Id="Account" Value="[Account_From_Registry]" />
<Property Id="Password" Value="******" />
<?endif?>
<Control Id="Account" Type="Edit" Text="[Account]" />
<Control Id="Password" Type="Edit" Text="[Password]" />