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&#13;&#10;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

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -