Developing a Windows 10 UWP (Universal Windows Platform) app here... I have a long text and I don't want to wrap it in several lines. I want it to be long so that the end user can horizontally scroll to see the entire text in one line.
<ScrollViewer HorizontalScrollMode="Enabled" Width="Auto">
<TextBlock Text="This is a long text that I don't want it to be wrapped in multiple lines. I want it to be horizontally long so the user can horizontally scroll to see the text"
Margin="50, 50, 0, 0"></TextBlock>
</ScrollViewer>
But when I run the app the text is cut off on the right edge and I cannot scroll it horizontally to see the rest of the text. Is there a way to achieve that using a ScrollView with some additional attributes? Here is the screen shot how the app looks.