wix3 - adding new line in the description of the dialog in wix localization string element -
i'm new wix, , using wix v3.0.
i'm using wixui_advanced dialogs. customized installdirdlg
description adding .wxl
(wix localization) file.
however, cannot add newline in description.
i tried following new line,
1. <string id="installdirdlgdescription">hello\nhai</string> 2. <string id="installdirdlgdescription">hello hai</string> 3. <string id="installdirdlgdescription">hello</string> <string id="installdirdlgdescription" overridable="yes">hai</string> 4. <string id="installdirdlgdescription">hello hai</string>
but, none of options work. suggestions.
it appears you've found bug in .wxl handling in wix toolset. expect option number 4 or following work:
<string id="installdirdlgdescription"><![cdata[hello hai]]></string>
at point, you'll best served opening wix toolset bug. might consider enlisting in code , trying root cause issue bug fixed. seems should work.
Comments
Post a Comment