I created a TextBlock link this:
<TextBlock x:Name="content" TextWrapping="Wrap" Width="40"/>
String largeText = "";
content.Text=largeText;
largeText
has 3000 pixels, but only 2048 are being displayed. It shows empty text after that.
How can I show largeText
in TextBlock?