Is there any way to display scrollabletext in loose xaml? The equivalent in HTML would be
<div style="overflow:scroll">some long bit of text here</div>
Can you do this in loose xaml?
From my experiments so far it seems that in loose xaml:
- You cannot use TextBox -- it must be TextBlock.
- TextBlock doesn't seem to have any styling settings which would make it scrollable.
- ScrollViewer doesn't seem to be allowed in loose xaml.
Any help gratefully appreciated.