user3023817
user3023817

Reputation: 11

Long text in scrollable textblock is cropped

I want place long text into a textblock i´m using:

<ScrollViewer Height="auto" VerticalAlignment="Top" Width="auto">
<TextBlock TextWrapping="Wrap">                 
   <Run Text=""/>
   <LineBreak/><LineBreak/>
   <Run Text=""/>
   <LineBreak/><LineBreak/>
   <Run Text=""/>
   <LineBreak/><LineBreak/>
   <Run Text=""/>
   <LineBreak/><LineBreak/>
 </TextBlock>                
</scrollviewer>

When text is really long it is cropped, what can i do to see all text

sorry, but my english is not good

Upvotes: 0

Views: 352

Answers (1)

Jakub Krampl
Jakub Krampl

Reputation: 1794

The reason for this behavior is that any element that must be displayed beyond the area which is larger than 2048x2048 pixels would be clipped by the platform.

Look at this solution.

Upvotes: 2

Related Questions