UWP: Newline character while using multiple language support

335 Views Asked by At

I am developing an app using Universal Windows Platform with multi-language support using Resources.resw file. I have a dialog with a textbox to show EULA as follows, in my page XAML.

<TextBox x:Uid="eula" TextWrapping="Wrap" AcceptsReturn="True" IsReadOnly="True" />

How can I type my resources.resw parameter, so that a new line shows up on the content dialog.

I tried \n, &#13;, <br/>, etc. to no avail.

1

There are 1 best solutions below

2
a'' On BEST ANSWER

Open any text editor, write your multiline text there

enter image description here

copy it and then paste into resources' value field.

enter image description here

The result

enter image description here