here, I am have a Resource in Page
<Page.Resources>
<sys:String x:Key="textBlock1">Hello
The world</sys:String>
</Page.Resources>
I want to localize my application by using DynamicResource, therefore, the Text property of my TextBlock is reference to this DynamicResource
<TextBlock Text="{DynamicResource textBlock1}" Margin="105,163,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" />
I prefer the word "Hello" in the first line and "The world" in the second line, so I use " ", but it is treated as a space.
If I assign string "Hello The world" to TextBlock.Text directly
<TextBlock Text="Hello
The world" Margin="105,163,0,0" HorizontalAlignment="Left" VerticalAlignment="Top" />
it break correctly.
So, how to break string in DynamicResource?