我有以下片段:
<?xml version="1.0" encoding="utf-8"?>
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
<Fragment>
<ComponentGroup Id="Doc">
<ComponentRef Id="cmpCDCC386748AE7BEFE7C2F4E764390254" />
<ComponentRef Id="cmp6EC513AE37CCAE66CEA96577E2384AFA" />
<ComponentRef Id="cmp0C9D9450CB94FF74C6E29C1C3F6D16D5" />
<ComponentRef Id="cmp314DEE3E909157F47FDF963DCC04D2AC" />
<ComponentRef Id="cmpBC5FB761D7B0DA99F96ECA9A91DD4217" />
<ComponentRef Id="cmp6B9E4B7B6F710D7077171BCE0B96A90A" />
<ComponentRef Id="cmp5959CF1572C71417D536C491A996C6DE" />
<ComponentRef Id="cmpCC960E9F3DDDE1600206003C43FFE663" />
</ComponentGroup>
</Fragment>
<Fragment>
<DirectoryRef Id="AzureApplicationSDK">
<Directory Id="dir67745C9C3FA1B31D9AF8883D12D8FBD8" Name="Doc">
<Component Id="cmpCDCC386748AE7BEFE7C2F4E764390254" Guid="{A46C5689-42D1-41CA-AD71-B2A416FA9571}">
<File Id="fil3B7DFCD3444314759F8617411F7EE08C" KeyPath="yes" Source="SourceDir\Azure Applications SDK v1 Cascade Tables Getting Started Guide.docx" />
</Component>
<Component Id="cmp6EC513AE37CCAE66CEA96577E2384AFA" Guid="{697C1B04-5279-4B31-9600-F3BCA4C1AD06}">
<File Id="filFDDD2C48EF5C14BA924C4272E4D9D490" KeyPath="yes" Source="SourceDir\Azurite Identity.docx" />
</Component>
<Component Id="cmp0C9D9450CB94FF74C6E29C1C3F6D16D5" Guid="{1C61C6C5-60F0-41A5-B229-093419E5F767}">
<File Id="fil4C736D0525C45780C242DA3BCA6823BA" KeyPath="yes" Source="SourceDir\Mercurius messaging how-to.docx" />
</Component>
<Component …Run Code Online (Sandbox Code Playgroud) 我正在使用此链接中的代码
我的Wix Dialogs看起来像这样
<Control Id="DummyComboBox" Hidden="yes" Type="ComboBox" Sorted="yes" ComboList="yes" Property="DUMMYPROPERTY" X="65" Y="60" Width="150" Height="18">
<ComboBox Property="DUMMYPROPERTY">
<ListItem Text="Dummy" Value="Dummy"/>
</ComboBox>
</Control>
<Control Id="SQLServer" Type="ComboBox" Sorted="yes" ComboList="yes" X="150" Y="100" Width="110" Height="18" Property="DBSERVER"/>
<Control Id="SQLServerLabel" Type="Text" X="25" Y="100" Width="90" Height="18" NoPrefix="yes" Text="!(loc.SQLServerLabel)"/>
<Control Id="SQLDatabaseName" Type="Edit" X="150" Y="120" Width="110" Height="18" Property="SQLDBNAME"/>
<Control Id="SQLDBServerLabel" Type="Text" X="25" Y="120" Width="90" Height="18" NoPrefix="yes" Text="!(loc.SQLDatabaseLabel)"/>
<Control Id="SQLUser" Type="Edit" X="150" Y="140" Width="110" Height="18" Property="SQLUSER"/>
<Control Id="SQLUServerLabel" Type="Text" X="25" Y="140" Width="90" Height="18" NoPrefix="yes" Text="!(loc.SQLUserLabel)"/>
<Control Id="SQLPassword" Type="Edit" X="150" …Run Code Online (Sandbox Code Playgroud) wix ×2