[Wix] 安装语言的本地化

1.Product节:
 <Product Name='Simple' Id='000C1109-0000-0000-C011-000000000046' Codepage="936" Language='2052' Version='6.01.00.1234'  Manufacturer='Microsoft Corporation'>  
2.Package节:
  <Package Id='000C1109-0000-0000-C011-000000000046' Description='Internal Simple Test' Manufacturer='Microsoft Corporation' InstallerVersion='100' Languages='2052' ShortNames='yes' Keywords='Installer,MSI,Database'  Comments='Simple install, copies one file' SummaryCodepage='936' Compressed='yes' />
4.UI:
   <Property Id='DefaultUIFont' Value='DlgFont' />
3.字体定义UI/TextStyle:
  <TextStyle Id='DlgFont' FaceName='MS Sans Serif' Size='10'/>
  <TextStyle Id="MSSansBold8" FaceName="MS Sans Serif" Size="8" Bold="yes" />
  <TextStyle Id="MSSansSerif8" FaceName="MS Sans Serif" Size="8" />
  <TextStyle Id="MSSansSerif9" FaceName="MS Sans Serif" Size="9" />
4.UI/Dialog界面:
   <Text><![CDATA[{\'DlgFont' }&Cancel]]></Text>

原文地址:https://www.cnblogs.com/huqingyu/p/53904.html